18 references to NameAttributeName
Microsoft.CodeAnalysis.Features (15)
Completion\Providers\AbstractDocCommentCompletionProvider.cs (14)
42
{ ParameterReferenceElementName, ($"<{ParameterReferenceElementName}", $" {
NameAttributeName
}=\"", "\"", "/>") },
43
{ TypeParameterReferenceElementName, ($"<{TypeParameterReferenceElementName}", $" {
NameAttributeName
}=\"", "\"", "/>") },
57
(ParameterElementName,
NameAttributeName
, $"{
NameAttributeName
}=\""),
58
(ParameterReferenceElementName,
NameAttributeName
, $"{
NameAttributeName
}=\""),
59
(TypeParameterElementName,
NameAttributeName
, $"{
NameAttributeName
}=\""),
60
(TypeParameterReferenceElementName,
NameAttributeName
, $"{
NameAttributeName
}=\""),
189
if (attributeName ==
NameAttributeName
&& symbol != null)
270
names.RemoveAll(GetExistingTopLevelAttributeValues(syntax, tagName,
NameAttributeName
).WhereNotNull());
275
=> $"{kind} {
NameAttributeName
}=\"{name}\"";
278
=> $"<{kind} {
NameAttributeName
}=\"{name}\"/>";
DocumentationComments\AbstractDocumentationCommentFormattingService.cs (1)
374
AppendTextFromAttribute(state, attribute, attributeNameToParse: DocumentationCommentXmlNames.
NameAttributeName
, kind);
Microsoft.CodeAnalysis.Workspaces (3)
Shared\Extensions\ISymbolExtensions.cs (1)
428
if (typeParameterRef.Attribute(DocumentationCommentXmlNames.
NameAttributeName
) is XAttribute typeParamName)
Shared\Utilities\DocumentationComment.cs (2)
255
var name = reader.GetAttribute(XmlNames.
NameAttributeName
);
266
var name = reader.GetAttribute(XmlNames.
NameAttributeName
);