1 implementation of TryGetAttributeNode
Microsoft.VisualStudio.LanguageServices.Implementation (1)
CodeModel\AbstractCodeModelService.cs (1)
643
public abstract bool
TryGetAttributeNode
(SyntaxNode parentNode, string name, int ordinal, [NotNullWhen(true)] out SyntaxNode? attributeNode);
1 reference to TryGetAttributeNode
Microsoft.VisualStudio.LanguageServices.Implementation (1)
CodeModel\InternalElements\CodeAttribute.cs (1)
63
if (!CodeModelService.
TryGetAttributeNode
(parentNode, _name, _ordinal, out var attributeNode))