18 references to NameAttributeName
Microsoft.CodeAnalysis.Features (15)
Completion\Providers\AbstractDocCommentCompletionProvider.cs (14)
41{ ParameterReferenceElementName, ($"<{ParameterReferenceElementName}", $" {NameAttributeName}=\"", "\"", "/>") }, 42{ TypeParameterReferenceElementName, ($"<{TypeParameterReferenceElementName}", $" {NameAttributeName}=\"", "\"", "/>") }, 56(ParameterElementName, NameAttributeName, $"{NameAttributeName}=\""), 57(ParameterReferenceElementName, NameAttributeName, $"{NameAttributeName}=\""), 58(TypeParameterElementName, NameAttributeName, $"{NameAttributeName}=\""), 59(TypeParameterReferenceElementName, NameAttributeName, $"{NameAttributeName}=\""), 178if (attributeName == NameAttributeName && symbol != null) 259names.RemoveAll(GetExistingTopLevelAttributeValues(syntax, tagName, NameAttributeName).WhereNotNull()); 264=> $"{kind} {NameAttributeName}=\"{name}\""; 267=> $"<{kind} {NameAttributeName}=\"{name}\"/>";
DocumentationComments\AbstractDocumentationCommentFormattingService.cs (1)
358AppendTextFromAttribute(state, attribute, attributeNameToParse: DocumentationCommentXmlNames.NameAttributeName, kind);
Microsoft.CodeAnalysis.Workspaces (3)
Shared\Extensions\ISymbolExtensions.cs (1)
435if (typeParameterRef.Attribute(DocumentationCommentXmlNames.NameAttributeName) is XAttribute typeParamName)
Shared\Utilities\DocumentationComment.cs (2)
257var name = reader.GetAttribute(XmlNames.NameAttributeName); 268var name = reader.GetAttribute(XmlNames.NameAttributeName);