Base:
property
StartQuoteToken
Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax.StartQuoteToken
8 references to StartQuoteToken
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)
15174
public new XmlTextAttributeSyntax WithName(XmlNameSyntax name) => Update(name, this.EqualsToken, this.
StartQuoteToken
, this.TextTokens, this.EndQuoteToken);
15176
public new XmlTextAttributeSyntax WithEqualsToken(SyntaxToken equalsToken) => Update(this.Name, equalsToken, this.
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 (2)
Generated\Syntax.Test.xml.Generated.cs (2)
13900
Assert.Equal(SyntaxKind.SingleQuoteToken, node.
StartQuoteToken
.Kind());
13903
var newNode = node.WithName(node.Name).WithEqualsToken(node.EqualsToken).WithStartQuoteToken(node.
StartQuoteToken
).WithTextTokens(node.TextTokens).WithEndQuoteToken(node.EndQuoteToken);