10 references to Prefix
Microsoft.CodeAnalysis.CSharp (6)
_generated\0\Syntax.xml.Main.Generated.cs (1)
2170
=> node.Update((XmlPrefixSyntax?)Visit(node.
Prefix
), VisitToken(node.LocalName));
_generated\2\Syntax.xml.Syntax.Generated.cs (2)
15093
if (prefix != this.
Prefix
|| localName != this.LocalName)
15104
public XmlNameSyntax WithLocalName(SyntaxToken localName) => Update(this.
Prefix
, localName);
Compiler\DocumentationCommentCompiler.DocumentationCommentWalker.cs (1)
209
if (nameSyntax != null && nameSyntax.
Prefix
== null &&
Syntax\SyntaxExtensions.cs (2)
142
Debug.Assert(parent.Name.
Prefix
is null);
148
Debug.Assert(parent.Name.
Prefix
is null);
Microsoft.CodeAnalysis.CSharp.Features (1)
ReplacePropertyWithMethods\CSharpReplacePropertyWithMethodsService.cs (1)
297
=> name.
Prefix
== null &&
Microsoft.CodeAnalysis.CSharp.Workspaces (3)
Classification\Worker_DocumentationComments.cs (3)
196
var prefix = node.
Prefix
;
288
return node is XmlElementStartTagSyntax { Name: XmlNameSyntax {
Prefix
: null, LocalName: SyntaxToken { Text: DocumentationCommentXmlNames.SeeElementName } } }
289
|| node is XmlEmptyElementSyntax { Name: XmlNameSyntax {
Prefix
: null, LocalName: SyntaxToken { Text: DocumentationCommentXmlNames.SeeElementName } } };