1 instantiation of AttributeTargetSpecifierSyntax
Microsoft.CodeAnalysis.CSharp (1)
25 references to AttributeTargetSpecifierSyntax
Microsoft.CodeAnalysis.CSharp (18)
_generated\2\Syntax.xml.Syntax.Generated.cs (8)
9907private AttributeTargetSpecifierSyntax? target;
9919public AttributeTargetSpecifierSyntax? Target => GetRed(ref this.target, 1);
9953public AttributeListSyntax Update(SyntaxToken openBracketToken, AttributeTargetSpecifierSyntax? target, SeparatedSyntaxList<AttributeSyntax> attributes, SyntaxToken closeBracketToken)
9966public AttributeListSyntax WithTarget(AttributeTargetSpecifierSyntax? target) => Update(this.OpenBracketToken, target, this.Attributes, this.CloseBracketToken);
10001public AttributeTargetSpecifierSyntax Update(SyntaxToken identifier, SyntaxToken colonToken)
10005var newNode = SyntaxFactory.AttributeTargetSpecifier(identifier, colonToken);
10013public AttributeTargetSpecifierSyntax WithIdentifier(SyntaxToken identifier) => Update(identifier, this.ColonToken);
10014public AttributeTargetSpecifierSyntax WithColonToken(SyntaxToken colonToken) => Update(this.Identifier, colonToken);
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (2)
Microsoft.CodeAnalysis.CSharp.Features (1)
Microsoft.CodeAnalysis.CSharp.Workspaces (2)
Roslyn.Diagnostics.CSharp.Analyzers (2)