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