1 instantiation of AttributeArgumentListSyntax
Microsoft.CodeAnalysis.CSharp (1)
124 references to AttributeArgumentListSyntax
Microsoft.AspNetCore.App.Analyzers (2)
Microsoft.CodeAnalysis.CSharp (24)
Syntax.xml.Syntax.Generated.cs (11)
9887private AttributeArgumentListSyntax? argumentList;
9897public AttributeArgumentListSyntax? ArgumentList => GetRed(ref this.argumentList, 1);
9918public AttributeSyntax Update(NameSyntax name, AttributeArgumentListSyntax? argumentList)
9931public AttributeSyntax WithArgumentList(AttributeArgumentListSyntax? argumentList) => Update(this.Name, argumentList);
9935var argumentList = this.ArgumentList ?? SyntaxFactory.AttributeArgumentList();
9979public AttributeArgumentListSyntax Update(SyntaxToken openParenToken, SeparatedSyntaxList<AttributeArgumentSyntax> arguments, SyntaxToken closeParenToken)
9983var newNode = SyntaxFactory.AttributeArgumentList(openParenToken, arguments, closeParenToken);
9991public AttributeArgumentListSyntax WithOpenParenToken(SyntaxToken openParenToken) => Update(openParenToken, this.Arguments, this.CloseParenToken);
9992public AttributeArgumentListSyntax WithArguments(SeparatedSyntaxList<AttributeArgumentSyntax> arguments) => Update(this.OpenParenToken, arguments, this.CloseParenToken);
9993public AttributeArgumentListSyntax WithCloseParenToken(SyntaxToken closeParenToken) => Update(this.OpenParenToken, this.Arguments, closeParenToken);
9995public AttributeArgumentListSyntax AddArguments(params AttributeArgumentSyntax[] items) => WithArguments(this.Arguments.AddRange(items));
Microsoft.CodeAnalysis.CSharp.CodeStyle (5)
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (13)
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (2)
Microsoft.CodeAnalysis.CSharp.Features (30)
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (7)
Microsoft.CodeAnalysis.CSharp.Workspaces (17)
Microsoft.Interop.LibraryImportGenerator (1)
Microsoft.VisualStudio.LanguageServices.CSharp (11)
QuarantineTools.Tests (1)
Roslyn.Diagnostics.CSharp.Analyzers (11)