Implemented interface member:
method
GetAttributes
Microsoft.CodeAnalysis.ISymbol.GetAttributes()
13 references to GetAttributes
Microsoft.CodeAnalysis.CodeStyle.Fixes (13)
CodeGenerationConstructedMethodSymbol.cs (1)
20constructedFrom.GetAttributes(),
CodeGenerationConstructedNamedTypeSymbol.cs (1)
22: base(constructedFrom.ContainingAssembly, constructedFrom.ContainingType, constructedFrom.GetAttributes(),
CodeGenerationConstructorSymbol.cs (1)
43var result = new CodeGenerationConstructorSymbol(this.ContainingType, this.GetAttributes(), this.DeclaredAccessibility, this.Modifiers, this.Parameters);
CodeGenerationDestructorSymbol.cs (1)
34var result = new CodeGenerationDestructorSymbol(this.ContainingType, this.GetAttributes());
CodeGenerationEventSymbol.cs (1)
49this.ContainingType, this.GetAttributes(), this.DeclaredAccessibility,
CodeGenerationFieldSymbol.cs (1)
43this.ContainingType, this.GetAttributes(), this.DeclaredAccessibility,
CodeGenerationMethodSymbol.cs (1)
61this.GetAttributes(), this.DeclaredAccessibility, this.Modifiers,
CodeGenerationNamedTypeSymbol.cs (1)
60this.ContainingAssembly, this.ContainingType, this.GetAttributes(), this.DeclaredAccessibility,
CodeGenerationParameterSymbol.cs (1)
52this.ContainingType, this.GetAttributes(), this.RefKind,
CodeGenerationPropertySymbol.cs (1)
57this.ContainingType, this.GetAttributes(), this.DeclaredAccessibility,
CodeGenerationSymbol.cs (2)
168=> GetAttributes().WhereAsArray(a => a.AttributeClass.Equals(attributeType)); 171=> GetAttributes().WhereAsArray(a => a.AttributeConstructor.Equals(attributeConstructor));
CodeGenerationTypeParameterSymbol.cs (1)
50this.ContainingType, this.GetAttributes(), this.Variance, this.Name, nullableAnnotation,