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