1 instantiation of AttributeTargetSpecifierSyntax
Microsoft.CodeAnalysis.CSharp (1)
25 references to AttributeTargetSpecifierSyntax
Microsoft.CodeAnalysis.CSharp (18)
_generated\2\Syntax.xml.Syntax.Generated.cs (8)
9814private AttributeTargetSpecifierSyntax? target;
9826public AttributeTargetSpecifierSyntax? Target => GetRed(ref this.target, 1);
9860public AttributeListSyntax Update(SyntaxToken openBracketToken, AttributeTargetSpecifierSyntax? target, SeparatedSyntaxList<AttributeSyntax> attributes, SyntaxToken closeBracketToken)
9873public AttributeListSyntax WithTarget(AttributeTargetSpecifierSyntax? target) => Update(this.OpenBracketToken, target, this.Attributes, this.CloseBracketToken);
9908public AttributeTargetSpecifierSyntax Update(SyntaxToken identifier, SyntaxToken colonToken)
9912var newNode = SyntaxFactory.AttributeTargetSpecifier(identifier, colonToken);
9920public AttributeTargetSpecifierSyntax WithIdentifier(SyntaxToken identifier) => Update(identifier, this.ColonToken);
9921public 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)