1 override of GetAttributeArguments
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
CodeGeneration\CSharpSyntaxGenerator.cs (1)
1114public override IReadOnlyList<SyntaxNode> GetAttributeArguments(SyntaxNode attributeDeclaration)
5 references to GetAttributeArguments
Microsoft.CodeAnalysis.Workspaces (1)
Editing\SyntaxGenerator.cs (1)
1214=> 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)
153var argumentToReplace = generator.GetAttributeArguments(declaration).ElementAtOrDefault(0); 196var argumentToReplace = generator.GetAttributeArguments(declaration).ElementAtOrDefault(1); 230return generator.GetAttributeArguments(attribute)[0];