21 references to CrefAttributeName
Microsoft.CodeAnalysis.Features (17)
Completion\Providers\AbstractDocCommentCompletionProvider.cs (15)
34{ ExceptionElementName, ($"<{ExceptionElementName}", $" {CrefAttributeName}=\"", "\"", null) }, 37{ PermissionElementName, ($"<{PermissionElementName}", $" {CrefAttributeName}=\"", "\"", null) }, 38{ SeeElementName, ($"<{SeeElementName}", $" {CrefAttributeName}=\"", "\"", "/>") }, 39{ SeeAlsoElementName, ($"<{SeeAlsoElementName}", $" {CrefAttributeName}=\"", "\"", "/>") }, 43{ CompletionListElementName, ($"<{CompletionListElementName}", $" {CrefAttributeName}=\"", "\"", "/>") }, 48(ExceptionElementName, CrefAttributeName, $"{CrefAttributeName}=\""), 49(PermissionElementName, CrefAttributeName, $"{CrefAttributeName}=\""), 50(SeeElementName, CrefAttributeName, $"{CrefAttributeName}=\""), 53(SeeAlsoElementName, CrefAttributeName, $"{CrefAttributeName}=\""), 62(InheritdocElementName, CrefAttributeName, $"{CrefAttributeName}=\""),
DocumentationComments\AbstractDocumentationCommentFormattingService.cs (2)
337AppendTextFromAttribute(state, attribute, attributeNameToParse: DocumentationCommentXmlNames.CrefAttributeName, SymbolDisplayPartKind.Text); 450var crefAttribute = element.Attribute(DocumentationCommentXmlNames.CrefAttributeName);
Microsoft.CodeAnalysis.Workspaces (4)
Shared\Extensions\ISymbolExtensions.cs (2)
346var crefAttribute = element.Attribute(XName.Get(DocumentationCommentXmlNames.CrefAttributeName)); 440replacement.SetAttributeValue(DocumentationCommentXmlNames.CrefAttributeName, docId);
Shared\Utilities\DocumentationComment.cs (2)
277var type = reader.GetAttribute(XmlNames.CrefAttributeName); 293var cref = reader.GetAttribute(XmlNames.CrefAttributeName);