11 references to XmlNameAttribute
Microsoft.CodeAnalysis.CSharp (4)
Compilation\CSharpSemanticModel.cs (1)
1240
if (node.Kind() == SyntaxKind.XmlCrefAttribute || node.Kind() == SyntaxKind.
XmlNameAttribute
)
Compilation\SyntaxTreeSemanticModel.cs (1)
247
else if (node.Parent.Kind() == SyntaxKind.
XmlNameAttribute
&& (attrSyntax = (XmlNameAttributeSyntax)node.Parent).Identifier == node)
Compiler\DocumentationCommentCompiler.DocumentationCommentWalker.cs (1)
182
else if (diagnose && nodeKind == SyntaxKind.
XmlNameAttribute
)
Syntax\CSharpSyntaxNode.cs (1)
400
if (curr.Kind() == SyntaxKind.XmlCrefAttribute || curr.Kind() == SyntaxKind.
XmlNameAttribute
)
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (1)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Utilities\CSharpSimplificationHelpers.cs (1)
34
if (parentOfToken is SimpleNameSyntax && parent.Kind() == SyntaxKind.
XmlNameAttribute
)
Microsoft.CodeAnalysis.CSharp.Features (3)
Completion\CompletionProviders\XmlDocCommentCompletionProvider.cs (2)
239
SyntaxKind.
XmlNameAttribute
or
305
else if (token.Parent.IsKind(SyntaxKind.
XmlNameAttribute
, out attributeSyntax) ||
ReplaceDocCommentTextWithTag\CSharpReplaceDocCommentTextWithTagCodeRefactoringProvider.cs (1)
27
=> token.GetRequiredParent().Kind() is SyntaxKind.XmlCrefAttribute or SyntaxKind.
XmlNameAttribute
or SyntaxKind.XmlTextAttribute;
Microsoft.CodeAnalysis.CSharp.Workspaces (3)
Classification\Worker_DocumentationComments.cs (1)
261
case SyntaxKind.
XmlNameAttribute
:
Simplification\CSharpSimplificationService.cs (1)
114
if (parentOfToken is SimpleNameSyntax && parent.IsKind(SyntaxKind.
XmlNameAttribute
))
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Utilities\CSharpSimplificationHelpers.cs (1)
34
if (parentOfToken is SimpleNameSyntax && parent.Kind() == SyntaxKind.
XmlNameAttribute
)