Base:
method
GetAttributes
Microsoft.CodeAnalysis.CSharp.Symbol.GetAttributes()
8 references to GetAttributes
Microsoft.CodeAnalysis.CSharp (2)
Symbols\Metadata\PE\PEMethodSymbol.cs (1)
1080public override ImmutableArray<CSharpAttributeData> GetReturnTypeAttributes() => Signature.ReturnParam.GetAttributes();
Symbols\Metadata\PE\PEParameterSymbol.cs (1)
1183foreach (CSharpAttributeData attribute in GetAttributes())
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (3)
Semantics\ParamsCollectionTests.cs (3)
9029Assert.Equal("System.Diagnostics.CodeAnalysis.UnscopedRefAttribute", p1.GetAttributes().Single().ToString()); 9033Assert.Empty(p1.GetAttributes()); 9040Assert.Empty(p1.GetAttributes());
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (1)
Symbols\Metadata\PE\LoadingAttributes.cs (1)
1313Assert.Empty(parameter.GetAttributes());
Microsoft.CodeAnalysis.CSharp.WinRT.UnitTests (2)
Metadata\WinMdDumpTest.cs (2)
365if (parameter.GetAttributes().Length > 0) 398if (parameter.GetAttributes().Length > 0)