Base:
method
GetAttributes
Microsoft.CodeAnalysis.VisualBasic.Symbol.GetAttributes()
11 references to GetAttributes
Microsoft.CodeAnalysis.VisualBasic (2)
Symbols\Metadata\PE\PEMethodSymbol.vb (1)
938Return Signature.ReturnParam.GetAttributes()
Symbols\Metadata\PE\PEParameterSymbol.vb (1)
422For Each attribute In GetAttributes()
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (1)
Emit\NoPiaEmbedTypes.vb (1)
4337Assert.Equal("System.Runtime.CompilerServices.DateTimeConstantAttribute(987654321)", p.GetAttributes().Single().ToString())
Microsoft.CodeAnalysis.VisualBasic.Symbol.UnitTests (8)
SymbolsTests\Metadata\PE\LoadingAttributes.vb (6)
1410Assert.Empty(m1Parameters(0).GetAttributes()) 1414Assert.Empty(m1Parameters(1).GetAttributes()) 1538Assert.Empty(m1Parameters(0).GetAttributes()) 1541Assert.Empty(m1Parameters(1).GetAttributes()) 1570Assert.Empty(m1Parameters(0).GetAttributes()) 1573Assert.Empty(m1Parameters(1).GetAttributes())
SymbolsTests\Source\ComClassTests.vb (2)
151If p.GetAttributes().Length > 0 Then 152result.Add(ReflectAttributes(p.GetAttributes()))