21 references to Name
Microsoft.CodeAnalysis.CSharp (8)
_generated\0\Syntax.xml.Main.Generated.cs (1)
2167
=> node.Update(VisitToken(node.LessThanToken), (XmlNameSyntax?)Visit(node.
Name
) ?? throw new ArgumentNullException("name"), VisitList(node.Attributes), VisitToken(node.SlashGreaterThanToken));
_generated\2\Syntax.xml.Syntax.Generated.cs (4)
15047
if (lessThanToken != this.LessThanToken || name != this.
Name
|| attributes != this.Attributes || slashGreaterThanToken != this.SlashGreaterThanToken)
15057
public XmlEmptyElementSyntax WithLessThanToken(SyntaxToken lessThanToken) => Update(lessThanToken, this.
Name
, this.Attributes, this.SlashGreaterThanToken);
15059
public XmlEmptyElementSyntax WithAttributes(SyntaxList<XmlAttributeSyntax> attributes) => Update(this.LessThanToken, this.
Name
, attributes, this.SlashGreaterThanToken);
15060
public XmlEmptyElementSyntax WithSlashGreaterThanToken(SyntaxToken slashGreaterThanToken) => Update(this.LessThanToken, this.
Name
, this.Attributes, slashGreaterThanToken);
Compiler\DocumentationCommentCompiler.DocumentationCommentWalker.cs (1)
202
nameSyntax = ((XmlEmptyElementSyntax)node).
Name
;
Syntax\SyntaxExtensions.cs (2)
141
parentName = parent.
Name
.LocalName.ValueText;
142
Debug.Assert(parent.
Name
.Prefix is null);
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (3)
src\roslyn\src\Analyzers\CSharp\CodeFixes\UsePrimaryConstructor\CSharpUsePrimaryConstructorCodeFixProvider.cs (3)
587
if (xmlElement is {
Name
.LocalName.ValueText: "see" })
631
.ReplaceToken(seeTag.
Name
.LocalName, Identifier("paramref").WithTriviaFrom(seeTag.
Name
.LocalName))
Microsoft.CodeAnalysis.CSharp.Features (8)
Completion\CompletionProviders\XmlDocCommentCompletionProvider.cs (2)
266
nameSyntax = emptyElementSyntax.
Name
;
325
tagName = emptyElement.
Name
.LocalName.Text;
ConvertPrimaryToRegularConstructor\ConvertPrimaryToRegularConstructorCodeRefactoringProvider.cs (3)
380
if (xmlElement is {
Name
.LocalName.ValueText: "paramref" })
383
.ReplaceToken(xmlElement.
Name
.LocalName, Identifier("see").WithTriviaFrom(xmlElement.
Name
.LocalName))
src\roslyn\src\Analyzers\CSharp\CodeFixes\UsePrimaryConstructor\CSharpUsePrimaryConstructorCodeFixProvider.cs (3)
587
if (xmlElement is {
Name
.LocalName.ValueText: "see" })
631
.ReplaceToken(seeTag.
Name
.LocalName, Identifier("paramref").WithTriviaFrom(seeTag.
Name
.LocalName))
Microsoft.CodeAnalysis.CSharp.Workspaces (2)
Classification\Worker_DocumentationComments.cs (2)
244
ClassifyXmlName(node.
Name
);
289
|| node is XmlEmptyElementSyntax {
Name
: XmlNameSyntax { Prefix: null, LocalName: SyntaxToken { Text: DocumentationCommentXmlNames.SeeElementName } } };