2 overrides of GetAttributeArguments
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
CodeGeneration\CSharpSyntaxGenerator.cs (1)
1109public override IReadOnlyList<SyntaxNode> GetAttributeArguments(SyntaxNode attributeDeclaration)
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
CodeGeneration\VisualBasicSyntaxGenerator.vb (1)
3185Public Overrides Function GetAttributeArguments(attributeDeclaration As SyntaxNode) As IReadOnlyList(Of SyntaxNode)
5 references to GetAttributeArguments
Microsoft.CodeAnalysis.Workspaces (1)
Editing\SyntaxGenerator.cs (1)
1155=> this.InsertAttributeArguments(attributeDeclaration, this.GetAttributeArguments(attributeDeclaration).Count, attributeArguments);
Microsoft.Interop.LibraryImportGenerator (1)
Analyzers\ConvertToLibraryImportFixer.cs (1)
434foreach (SyntaxNode argument in generator.GetAttributeArguments(libraryImportSyntax))
Roslyn.Diagnostics.Analyzers (3)
ImportingConstructorShouldBeObsoleteCodeFixProvider.cs (3)
155var argumentToReplace = generator.GetAttributeArguments(declaration).ElementAtOrDefault(0); 198var argumentToReplace = generator.GetAttributeArguments(declaration).ElementAtOrDefault(1); 232return generator.GetAttributeArguments(attribute)[0];