Base:
method
GetAttributes
Microsoft.CodeAnalysis.CSharp.Symbol.GetAttributes()
5 references to GetAttributes
Microsoft.CodeAnalysis.CSharp (5)
Emitter\Model\SourceAssemblySymbolAdapter.cs (1)
20ImmutableArray<CSharpAttributeData> userDefined = this.GetAttributes();
Symbols\Retargeting\RetargetingAssemblySymbol.cs (1)
212return RetargetingTranslator.GetRetargetedAttributes(_underlyingAssembly.GetAttributes(), ref _lazyCustomAttributes);
Symbols\Source\SourceAssemblySymbol.cs (3)
84/// These indices correspond to the merged assembly attributes from source and added net modules, i.e. attributes returned by <see cref="GetAttributes"/> method. 1627Debug.Assert(_lazyOmittedAttributeIndices == null || !_lazyOmittedAttributeIndices.Any(i => i < 0 || i >= this.GetAttributes().Length)); 1631Debug.Assert(index < this.GetAttributes().Length);