10 references to XmlCrefAttribute
Microsoft.CodeAnalysis.CSharp (5)
Binder\Binder_Crefs.cs (1)
1022return parentSyntax == null || parentSyntax.IsKind(SyntaxKind.XmlCrefAttribute)
Compilation\CSharpSemanticModel.cs (1)
1240if (node.Kind() == SyntaxKind.XmlCrefAttribute || node.Kind() == SyntaxKind.XmlNameAttribute)
Compiler\DocumentationCommentCompiler.DocumentationCommentWalker.cs (1)
144if (nodeKind == SyntaxKind.XmlCrefAttribute)
Syntax\CSharpSyntaxNode.cs (1)
418if (curr.Kind() == SyntaxKind.XmlCrefAttribute || curr.Kind() == SyntaxKind.XmlNameAttribute)
Syntax\SyntaxFactory.cs (1)
1629return attributeSyntax.Kind() == SyntaxKind.XmlCrefAttribute ? ((XmlCrefAttributeSyntax)attributeSyntax).Cref : null;
Microsoft.CodeAnalysis.CSharp.Features (4)
Completion\CompletionProviders\CrefCompletionProvider.cs (1)
126token.Parent.IsKind(SyntaxKind.XmlCrefAttribute);
Completion\CompletionProviders\XmlDocCommentCompletionProvider.cs (1)
209SyntaxKind.XmlCrefAttribute or
QuickInfo\CSharpSemanticQuickInfoProvider.cs (1)
76=> !token.Parent.IsKind(SyntaxKind.XmlCrefAttribute);
ReplaceDocCommentTextWithTag\CSharpReplaceDocCommentTextWithTagCodeRefactoringProvider.cs (1)
28=> token.GetRequiredParent().Kind() is SyntaxKind.XmlCrefAttribute or SyntaxKind.XmlNameAttribute or SyntaxKind.XmlTextAttribute;
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
Classification\Worker_DocumentationComments.cs (1)
258case SyntaxKind.XmlCrefAttribute: