1 instantiation of AttributeArgumentListSyntax
Microsoft.CodeAnalysis.CSharp (1)
126 references to AttributeArgumentListSyntax
Microsoft.AspNetCore.App.Analyzers (2)
Microsoft.CodeAnalysis.CSharp (24)
Syntax.xml.Syntax.Generated.cs (11)
9932private AttributeArgumentListSyntax? argumentList;
9942public AttributeArgumentListSyntax? ArgumentList => GetRed(ref this.argumentList, 1);
9963public AttributeSyntax Update(NameSyntax name, AttributeArgumentListSyntax? argumentList)
9976public AttributeSyntax WithArgumentList(AttributeArgumentListSyntax? argumentList) => Update(this.Name, argumentList);
9980var argumentList = this.ArgumentList ?? SyntaxFactory.AttributeArgumentList();
10024public AttributeArgumentListSyntax Update(SyntaxToken openParenToken, SeparatedSyntaxList<AttributeArgumentSyntax> arguments, SyntaxToken closeParenToken)
10028var newNode = SyntaxFactory.AttributeArgumentList(openParenToken, arguments, closeParenToken);
10036public AttributeArgumentListSyntax WithOpenParenToken(SyntaxToken openParenToken) => Update(openParenToken, this.Arguments, this.CloseParenToken);
10037public AttributeArgumentListSyntax WithArguments(SeparatedSyntaxList<AttributeArgumentSyntax> arguments) => Update(this.OpenParenToken, arguments, this.CloseParenToken);
10038public AttributeArgumentListSyntax WithCloseParenToken(SyntaxToken closeParenToken) => Update(this.OpenParenToken, this.Arguments, closeParenToken);
10040public 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.Interop.LibraryImportGenerator (1)
Microsoft.VisualStudio.LanguageServices.CSharp (11)
QuarantineTools.Tests (2)
Roslyn.Diagnostics.CSharp.Analyzers (11)