19 references to XmlCrefAttribute
Microsoft.Analyzers.Local (1)
InternalReferencedInPublicDocAnalyzer.cs (1)
111context.RegisterSyntaxNodeAction(ValidateCref, SyntaxKind.XmlCrefAttribute);
Microsoft.CodeAnalysis.CSharp (8)
Binder\Binder_Crefs.cs (1)
1229return parentSyntax == null || parentSyntax.IsKind(SyntaxKind.XmlCrefAttribute)
Compilation\CSharpSemanticModel.cs (1)
1243if (node.Kind() == SyntaxKind.XmlCrefAttribute || node.Kind() == SyntaxKind.XmlNameAttribute)
Compiler\DocumentationCommentCompiler.DocumentationCommentWalker.cs (1)
144if (nodeKind == SyntaxKind.XmlCrefAttribute)
Syntax.xml.Internal.Generated.cs (2)
33075return new XmlCrefAttributeSyntax(SyntaxKind.XmlCrefAttribute, name, equalsToken, startQuoteToken, cref, endQuoteToken, this.context); 38442return new XmlCrefAttributeSyntax(SyntaxKind.XmlCrefAttribute, name, equalsToken, startQuoteToken, cref, endQuoteToken);
Syntax.xml.Syntax.Generated.cs (1)
15193/// <item><description><see cref="SyntaxKind.XmlCrefAttribute"/></description></item>
Syntax\CSharpSyntaxNode.cs (1)
398if (curr.Kind() == SyntaxKind.XmlCrefAttribute || curr.Kind() == SyntaxKind.XmlNameAttribute)
Syntax\SyntaxFactory.cs (1)
1659return attributeSyntax.Kind() == SyntaxKind.XmlCrefAttribute ? ((XmlCrefAttributeSyntax)attributeSyntax).Cref : null;
Microsoft.CodeAnalysis.CSharp.Analyzers (1)
MetaAnalyzers\CSharpSymbolIsBannedInAnalyzersAnalyzer.cs (1)
17protected override SyntaxKind XmlCrefSyntaxKind => SyntaxKind.XmlCrefAttribute;
Microsoft.CodeAnalysis.CSharp.BannedApiAnalyzers (1)
CSharpSymbolIsBannedAnalyzer.cs (1)
17protected override SyntaxKind XmlCrefSyntaxKind => SyntaxKind.XmlCrefAttribute;
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxKinds.cs (1)
67public int XmlCrefAttribute => (int)SyntaxKind.XmlCrefAttribute;
Microsoft.CodeAnalysis.CSharp.Features (4)
Completion\CompletionProviders\CrefCompletionProvider.cs (1)
124token.Parent.IsKind(SyntaxKind.XmlCrefAttribute);
Completion\CompletionProviders\XmlDocCommentCompletionProvider.cs (1)
239SyntaxKind.XmlCrefAttribute or
QuickInfo\CSharpSemanticQuickInfoProvider.cs (1)
85=> !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 (2)
Classification\Worker_DocumentationComments.cs (1)
271case SyntaxKind.XmlCrefAttribute:
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxKinds.cs (1)
67public int XmlCrefAttribute => (int)SyntaxKind.XmlCrefAttribute;
Roslyn.Diagnostics.CSharp.Analyzers (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxKinds.cs (1)
67public int XmlCrefAttribute => (int)SyntaxKind.XmlCrefAttribute;