1 instantiation of AttributeArgumentListSyntax
Microsoft.CodeAnalysis.CSharp (1)
127 references to AttributeArgumentListSyntax
Microsoft.AspNetCore.App.Analyzers (2)
Microsoft.CodeAnalysis.CSharp (24)
Syntax.xml.Syntax.Generated.cs (11)
9888private AttributeArgumentListSyntax? argumentList;
9898public AttributeArgumentListSyntax? ArgumentList => GetRed(ref this.argumentList, 1);
9919public AttributeSyntax Update(NameSyntax name, AttributeArgumentListSyntax? argumentList)
9932public AttributeSyntax WithArgumentList(AttributeArgumentListSyntax? argumentList) => Update(this.Name, argumentList);
9936var argumentList = this.ArgumentList ?? SyntaxFactory.AttributeArgumentList();
9980public AttributeArgumentListSyntax Update(SyntaxToken openParenToken, SeparatedSyntaxList<AttributeArgumentSyntax> arguments, SyntaxToken closeParenToken)
9984var newNode = SyntaxFactory.AttributeArgumentList(openParenToken, arguments, closeParenToken);
9992public AttributeArgumentListSyntax WithOpenParenToken(SyntaxToken openParenToken) => Update(openParenToken, this.Arguments, this.CloseParenToken);
9993public AttributeArgumentListSyntax WithArguments(SeparatedSyntaxList<AttributeArgumentSyntax> arguments) => Update(this.OpenParenToken, arguments, this.CloseParenToken);
9994public AttributeArgumentListSyntax WithCloseParenToken(SyntaxToken closeParenToken) => Update(this.OpenParenToken, this.Arguments, closeParenToken);
9996public 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 (8)
Microsoft.CodeAnalysis.CSharp.Workspaces (17)
Microsoft.DotNet.ApiDiff (1)
Microsoft.Interop.LibraryImportGenerator (1)
Microsoft.VisualStudio.LanguageServices.CSharp (11)
QuarantineTools.Tests (2)
Roslyn.Diagnostics.CSharp.Analyzers (11)