11 references to XmlCrefAttribute
Microsoft.Analyzers.Local (1)
InternalReferencedInPublicDocAnalyzer.cs (1)
111context.RegisterSyntaxNodeAction(ValidateCref, SyntaxKind.XmlCrefAttribute);
Microsoft.CodeAnalysis.CSharp (5)
Binder\Binder_Crefs.cs (1)
1028return 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)
400if (curr.Kind() == SyntaxKind.XmlCrefAttribute || curr.Kind() == SyntaxKind.XmlNameAttribute)
Syntax\SyntaxFactory.cs (1)
1630return attributeSyntax.Kind() == SyntaxKind.XmlCrefAttribute ? ((XmlCrefAttributeSyntax)attributeSyntax).Cref : null;
Microsoft.CodeAnalysis.CSharp.Features (4)
Completion\CompletionProviders\CrefCompletionProvider.cs (1)
122token.Parent.IsKind(SyntaxKind.XmlCrefAttribute);
Completion\CompletionProviders\XmlDocCommentCompletionProvider.cs (1)
238SyntaxKind.XmlCrefAttribute or
QuickInfo\CSharpSemanticQuickInfoProvider.cs (1)
83=> !token.Parent.IsKind(SyntaxKind.XmlCrefAttribute);
ReplaceDocCommentTextWithTag\CSharpReplaceDocCommentTextWithTagCodeRefactoringProvider.cs (1)
27=> 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: