Base:
property
Name
Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax.Name
10 references to Name
Microsoft.CodeAnalysis.CSharp (6)
Syntax.xml.Main.Generated.cs (1)
2164
=> node.Update((XmlNameSyntax?)Visit(node.
Name
) ?? throw new ArgumentNullException("name"), VisitToken(node.EqualsToken), VisitToken(node.StartQuoteToken), VisitList(node.TextTokens), VisitToken(node.EndQuoteToken));
Syntax.xml.Syntax.Generated.cs (5)
15163
if (name != this.
Name
|| equalsToken != this.EqualsToken || startQuoteToken != this.StartQuoteToken || textTokens != this.TextTokens || endQuoteToken != this.EndQuoteToken)
15176
public new XmlTextAttributeSyntax WithEqualsToken(SyntaxToken equalsToken) => Update(this.
Name
, equalsToken, this.StartQuoteToken, this.TextTokens, this.EndQuoteToken);
15178
public new XmlTextAttributeSyntax WithStartQuoteToken(SyntaxToken startQuoteToken) => Update(this.
Name
, this.EqualsToken, startQuoteToken, this.TextTokens, this.EndQuoteToken);
15179
public XmlTextAttributeSyntax WithTextTokens(SyntaxTokenList textTokens) => Update(this.
Name
, this.EqualsToken, this.StartQuoteToken, textTokens, this.EndQuoteToken);
15181
public new XmlTextAttributeSyntax WithEndQuoteToken(SyntaxToken endQuoteToken) => Update(this.
Name
, this.EqualsToken, this.StartQuoteToken, this.TextTokens, endQuoteToken);
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (4)
Generated\Syntax.Test.xml.Generated.cs (2)
13898
Assert.NotNull(node.
Name
);
13903
var newNode = node.WithName(node.
Name
).WithEqualsToken(node.EqualsToken).WithStartQuoteToken(node.StartQuoteToken).WithTextTokens(node.TextTokens).WithEndQuoteToken(node.EndQuoteToken);
LexicalAndXml\XmlDocCommentTests.cs (2)
3399
Assert.True(attributes.ContainsKey(attribute.
Name
.LocalName.Value as string));
3402
Assert.Equal(attributes[attribute.
Name
.LocalName.Value as string], attribute.TextTokens.ToString());