3 overrides of EndQuoteToken
Microsoft.CodeAnalysis.CSharp (3)
Syntax.xml.Syntax.Generated.cs (3)
15152
public override SyntaxToken
EndQuoteToken
=> new SyntaxToken(this, ((InternalSyntax.XmlTextAttributeSyntax)this.Green).endQuoteToken, GetChildPosition(4), GetChildIndex(4));
15210
public override SyntaxToken
EndQuoteToken
=> new SyntaxToken(this, ((InternalSyntax.XmlCrefAttributeSyntax)this.Green).endQuoteToken, GetChildPosition(4), GetChildIndex(4));
15278
public override SyntaxToken
EndQuoteToken
=> new SyntaxToken(this, ((InternalSyntax.XmlNameAttributeSyntax)this.Green).endQuoteToken, GetChildPosition(4), GetChildIndex(4));
3 references to EndQuoteToken
Microsoft.CodeAnalysis.CSharp (1)
Syntax\LookupPosition.cs (1)
516
return IsBetweenTokens(position, attribute.StartQuoteToken, attribute.
EndQuoteToken
);
Microsoft.CodeAnalysis.CSharp.Features (1)
Completion\CompletionProviders\XmlDocCommentCompletionProvider.cs (1)
248
if (token == attributeSyntax.
EndQuoteToken
)
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
Classification\Worker_DocumentationComments.cs (1)
272
AddXmlClassification(attribute.
EndQuoteToken
, ClassificationTypeNames.XmlDocCommentAttributeQuotes);