1 instantiation of AttributeTargetSpecifierSyntax
Microsoft.CodeAnalysis.CSharp (1)
32 references to AttributeTargetSpecifierSyntax
Microsoft.CodeAnalysis.CSharp (18)
Syntax.xml.Syntax.Generated.cs (8)
9767private AttributeTargetSpecifierSyntax? target;
9779public AttributeTargetSpecifierSyntax? Target => GetRed(ref this.target, 1);
9813public AttributeListSyntax Update(SyntaxToken openBracketToken, AttributeTargetSpecifierSyntax? target, SeparatedSyntaxList<AttributeSyntax> attributes, SyntaxToken closeBracketToken)
9826public AttributeListSyntax WithTarget(AttributeTargetSpecifierSyntax? target) => Update(this.OpenBracketToken, target, this.Attributes, this.CloseBracketToken);
9861public AttributeTargetSpecifierSyntax Update(SyntaxToken identifier, SyntaxToken colonToken)
9865var newNode = SyntaxFactory.AttributeTargetSpecifier(identifier, colonToken);
9873public AttributeTargetSpecifierSyntax WithIdentifier(SyntaxToken identifier) => Update(identifier, this.ColonToken);
9874public 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)