11 references to XmlCrefAttribute
Microsoft.Analyzers.Local (1)
InternalReferencedInPublicDocAnalyzer.cs (1)
111
context.RegisterSyntaxNodeAction(ValidateCref, SyntaxKind.
XmlCrefAttribute
);
Microsoft.CodeAnalysis.CSharp (5)
Binder\Binder_Crefs.cs (1)
1028
return parentSyntax == null || parentSyntax.IsKind(SyntaxKind.
XmlCrefAttribute
)
Compilation\CSharpSemanticModel.cs (1)
1240
if (node.Kind() == SyntaxKind.
XmlCrefAttribute
|| node.Kind() == SyntaxKind.XmlNameAttribute)
Compiler\DocumentationCommentCompiler.DocumentationCommentWalker.cs (1)
144
if (nodeKind == SyntaxKind.
XmlCrefAttribute
)
Syntax\CSharpSyntaxNode.cs (1)
400
if (curr.Kind() == SyntaxKind.
XmlCrefAttribute
|| curr.Kind() == SyntaxKind.XmlNameAttribute)
Syntax\SyntaxFactory.cs (1)
1630
return attributeSyntax.Kind() == SyntaxKind.
XmlCrefAttribute
? ((XmlCrefAttributeSyntax)attributeSyntax).Cref : null;
Microsoft.CodeAnalysis.CSharp.Features (4)
Completion\CompletionProviders\CrefCompletionProvider.cs (1)
122
token.Parent.IsKind(SyntaxKind.
XmlCrefAttribute
);
Completion\CompletionProviders\XmlDocCommentCompletionProvider.cs (1)
238
SyntaxKind.
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)
258
case SyntaxKind.
XmlCrefAttribute
: