1 instantiation of AttributeArgumentListSyntax
Microsoft.CodeAnalysis.CSharp (1)
105 references to AttributeArgumentListSyntax
Microsoft.AspNetCore.App.Analyzers (2)
Microsoft.CodeAnalysis.CSharp (24)
_generated\2\Syntax.xml.Syntax.Generated.cs (11)
9933private AttributeArgumentListSyntax? argumentList;
9943public AttributeArgumentListSyntax? ArgumentList => GetRed(ref this.argumentList, 1);
9964public AttributeSyntax Update(NameSyntax name, AttributeArgumentListSyntax? argumentList)
9977public AttributeSyntax WithArgumentList(AttributeArgumentListSyntax? argumentList) => Update(this.Name, argumentList);
9981var argumentList = this.ArgumentList ?? SyntaxFactory.AttributeArgumentList();
10025public AttributeArgumentListSyntax Update(SyntaxToken openParenToken, SeparatedSyntaxList<AttributeArgumentSyntax> arguments, SyntaxToken closeParenToken)
10029var newNode = SyntaxFactory.AttributeArgumentList(openParenToken, arguments, closeParenToken);
10037public AttributeArgumentListSyntax WithOpenParenToken(SyntaxToken openParenToken) => Update(openParenToken, this.Arguments, this.CloseParenToken);
10038public AttributeArgumentListSyntax WithArguments(SeparatedSyntaxList<AttributeArgumentSyntax> arguments) => Update(this.OpenParenToken, arguments, this.CloseParenToken);
10039public AttributeArgumentListSyntax WithCloseParenToken(SyntaxToken closeParenToken) => Update(this.OpenParenToken, this.Arguments, closeParenToken);
10041public AttributeArgumentListSyntax AddArguments(params AttributeArgumentSyntax[] items) => WithArguments(this.Arguments.AddRange(items));
Microsoft.CodeAnalysis.CSharp.CodeStyle (5)
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (13)
Microsoft.CodeAnalysis.CSharp.Features (30)
Microsoft.CodeAnalysis.CSharp.Workspaces (17)
Microsoft.Interop.LibraryImportGenerator (1)
QuarantineTools.Tests (2)
Roslyn.Diagnostics.CSharp.Analyzers (11)