1 implementation of XmlCrefAttribute
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxKinds.cs (1)
67public int XmlCrefAttribute => (int)SyntaxKind.XmlCrefAttribute;
1 reference to XmlCrefAttribute
Microsoft.CodeAnalysis.Workspaces (1)
FindSymbols\FindReferences\Finders\CrefTypeParameterSymbolReferenceFinder.cs (1)
62var attribute = token.GetAncestors<SyntaxNode>().FirstOrDefault(n => syntaxFacts.SyntaxKinds.XmlCrefAttribute == n.RawKind);