Base:
property
StartQuoteToken
Microsoft.CodeAnalysis.CSharp.Syntax.XmlAttributeSyntax.StartQuoteToken
10 references to StartQuoteToken
Microsoft.CodeAnalysis.CSharp (7)
_generated\0\Syntax.xml.Main.Generated.cs (1)
2179
=> node.Update((XmlNameSyntax?)Visit(node.Name) ?? throw new ArgumentNullException("name"), VisitToken(node.EqualsToken), VisitToken(node.
StartQuoteToken
), (CrefSyntax?)Visit(node.Cref) ?? throw new ArgumentNullException("cref"), VisitToken(node.EndQuoteToken));
_generated\2\Syntax.xml.Syntax.Generated.cs (5)
15283
if (name != this.Name || equalsToken != this.EqualsToken || startQuoteToken != this.
StartQuoteToken
|| cref != this.Cref || endQuoteToken != this.EndQuoteToken)
15294
public new XmlCrefAttributeSyntax WithName(XmlNameSyntax name) => Update(name, this.EqualsToken, this.
StartQuoteToken
, this.Cref, this.EndQuoteToken);
15296
public new XmlCrefAttributeSyntax WithEqualsToken(SyntaxToken equalsToken) => Update(this.Name, equalsToken, this.
StartQuoteToken
, this.Cref, this.EndQuoteToken);
15299
public XmlCrefAttributeSyntax WithCref(CrefSyntax cref) => Update(this.Name, this.EqualsToken, this.
StartQuoteToken
, cref, this.EndQuoteToken);
15301
public new XmlCrefAttributeSyntax WithEndQuoteToken(SyntaxToken endQuoteToken) => Update(this.Name, this.EqualsToken, this.
StartQuoteToken
, this.Cref, endQuoteToken);
Compiler\DocumentationCommentCompiler.DocumentationCommentWalker.cs (1)
168
crefAttr.
StartQuoteToken
.WriteTo(_writer, leading: true, trailing: false);
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Extensions\SyntaxTreeExtensions.cs (1)
162
return token == attribute.
StartQuoteToken
;
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Extensions\SyntaxTreeExtensions.cs (1)
162
return token == attribute.
StartQuoteToken
;
Roslyn.Diagnostics.CSharp.Analyzers (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Extensions\SyntaxTreeExtensions.cs (1)
162
return token == attribute.
StartQuoteToken
;