1 instantiation of AttributeTargetSpecifierSyntax
Microsoft.CodeAnalysis.CSharp (1)
32 references to AttributeTargetSpecifierSyntax
Microsoft.CodeAnalysis.CSharp (18)
Syntax.xml.Syntax.Generated.cs (8)
9768private AttributeTargetSpecifierSyntax? target;
9780public AttributeTargetSpecifierSyntax? Target => GetRed(ref this.target, 1);
9814public AttributeListSyntax Update(SyntaxToken openBracketToken, AttributeTargetSpecifierSyntax? target, SeparatedSyntaxList<AttributeSyntax> attributes, SyntaxToken closeBracketToken)
9827public AttributeListSyntax WithTarget(AttributeTargetSpecifierSyntax? target) => Update(this.OpenBracketToken, target, this.Attributes, this.CloseBracketToken);
9862public AttributeTargetSpecifierSyntax Update(SyntaxToken identifier, SyntaxToken colonToken)
9866var newNode = SyntaxFactory.AttributeTargetSpecifier(identifier, colonToken);
9874public AttributeTargetSpecifierSyntax WithIdentifier(SyntaxToken identifier) => Update(identifier, this.ColonToken);
9875public AttributeTargetSpecifierSyntax WithColonToken(SyntaxToken colonToken) => Update(this.Identifier, colonToken);
 
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (2)
Microsoft.CodeAnalysis.CSharp.Features (1)
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (6)
Microsoft.CodeAnalysis.CSharp.Workspaces (2)
Microsoft.VisualStudio.LanguageServices.CSharp (1)
Roslyn.Diagnostics.CSharp.Analyzers (2)