15 references to Attributes
Microsoft.CodeAnalysis.CSharp (10)
_generated\0\Syntax.xml.Main.Generated.cs (1)
2167
=> node.Update(VisitToken(node.LessThanToken), (XmlNameSyntax?)Visit(node.Name) ?? throw new ArgumentNullException("name"), VisitList(node.
Attributes
), VisitToken(node.SlashGreaterThanToken));
_generated\2\Syntax.xml.Syntax.Generated.cs (5)
15047
if (lessThanToken != this.LessThanToken || name != this.Name || attributes != this.
Attributes
|| slashGreaterThanToken != this.SlashGreaterThanToken)
15057
public XmlEmptyElementSyntax WithLessThanToken(SyntaxToken lessThanToken) => Update(lessThanToken, this.Name, this.
Attributes
, this.SlashGreaterThanToken);
15058
public XmlEmptyElementSyntax WithName(XmlNameSyntax name) => Update(this.LessThanToken, name, this.
Attributes
, this.SlashGreaterThanToken);
15060
public XmlEmptyElementSyntax WithSlashGreaterThanToken(SyntaxToken slashGreaterThanToken) => Update(this.LessThanToken, this.Name, this.
Attributes
, slashGreaterThanToken);
15062
public XmlEmptyElementSyntax AddAttributes(params XmlAttributeSyntax[] items) => WithAttributes(this.
Attributes
.AddRange(items));
Compiler\DocumentationCommentCompiler.IncludeElementExpander.cs (2)
627
Debug.Assert(elementSyntax.
Attributes
.Count == 1);
628
return (XmlNameAttributeSyntax)elementSyntax.
Attributes
[0];
Syntax\SyntaxFactory.cs (2)
1657
Debug.Assert(elementSyntax.
Attributes
.Count == 1);
1658
XmlAttributeSyntax attributeSyntax = (XmlAttributeSyntax)elementSyntax.
Attributes
[0];
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpDocumentationCommentService.cs (1)
27
=> xmlEmpty.
Attributes
;
Microsoft.CodeAnalysis.CSharp.Features (1)
Completion\CompletionProviders\XmlDocCommentCompletionProvider.cs (1)
267
attributes = emptyElementSyntax.
Attributes
;
Microsoft.CodeAnalysis.CSharp.Workspaces (2)
Classification\Worker_DocumentationComments.cs (1)
246
foreach (var attribute in node.
Attributes
)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpDocumentationCommentService.cs (1)
27
=> xmlEmpty.
Attributes
;
Roslyn.Diagnostics.CSharp.Analyzers (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpDocumentationCommentService.cs (1)
27
=> xmlEmpty.
Attributes
;