11 references to SeeElementName
Microsoft.CodeAnalysis.CSharp.Workspaces (2)
Classification\Worker_DocumentationComments.cs (2)
281return node is XmlElementStartTagSyntax { Name: XmlNameSyntax { Prefix: null, LocalName: SyntaxToken { Text: DocumentationCommentXmlNames.SeeElementName } } } 282|| node is XmlEmptyElementSyntax { Name: XmlNameSyntax { Prefix: null, LocalName: SyntaxToken { Text: DocumentationCommentXmlNames.SeeElementName } } };
Microsoft.CodeAnalysis.Features (8)
Completion\Providers\AbstractDocCommentCompletionProvider.cs (7)
38{ SeeElementName, ($"<{SeeElementName}", $" {CrefAttributeName}=\"", "\"", "/>") }, 50(SeeElementName, CrefAttributeName, $"{CrefAttributeName}=\""), 51(SeeElementName, LangwordAttributeName, $"{LangwordAttributeName}=\""), 52(SeeElementName, HrefAttributeName, $"{HrefAttributeName}=\""), 127=> [GetCDataItem(), GetCommentItem(), GetItem(InheritdocElementName), GetItem(SeeElementName), GetItem(SeeAlsoElementName)]; 201else if (attributeName == LangwordAttributeName && tagName == SeeElementName)
DocumentationComments\AbstractDocumentationCommentFormattingService.cs (1)
329if (name is DocumentationCommentXmlNames.SeeElementName or
Microsoft.CodeAnalysis.Workspaces (1)
Shared\Extensions\ISymbolExtensions.cs (1)
439var replacement = new XElement(DocumentationCommentXmlNames.SeeElementName);