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)
337
AppendTextFromAttribute(state, attribute, attributeNameToParse: DocumentationCommentXmlNames.
CrefAttributeName
, SymbolDisplayPartKind.Text);
450
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
);