2 implementations of IsAttributeName
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
CSharpSyntaxFacts.cs (1)
180public bool IsAttributeName(SyntaxNode node)
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
VisualBasicSyntaxFacts.vb (1)
162Public Function IsAttributeName(node As SyntaxNode) As Boolean Implements ISyntaxFacts.IsAttributeName
7 references to IsAttributeName
Microsoft.CodeAnalysis.Features (6)
AddImport\SymbolReferenceFinder.cs (1)
173inAttributeContext = syntaxFacts.IsAttributeName(nameNode);
FullyQualify\AbstractFullyQualifyService.cs (3)
77var inAttributeContext = syntaxFacts.IsAttributeName(simpleName); 128var inAttributeContext = syntaxFacts.IsAttributeName(simpleName); 170isAttributeName = syntaxFacts.IsAttributeName(rightSide);
GenerateType\AbstractGenerateTypeService.State.cs (1)
214else if (syntaxFacts.IsAttributeName(NameOrMemberAccessExpression))
QuickInfo\CommonSemanticQuickInfoProvider.cs (1)
165if (syntaxFactsService.IsAttributeName(token.Parent!))
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
VisualBasicSyntaxFacts.vb (1)
162Public Function IsAttributeName(node As SyntaxNode) As Boolean Implements ISyntaxFacts.IsAttributeName