2 overrides of Attributes
Microsoft.CodeAnalysis.Razor.Compiler (2)
Language\Syntax\Generated\Syntax.xml.Syntax.Generated.cs (2)
890
public override SyntaxList<RazorSyntaxNode>
Attributes
=> new SyntaxList<RazorSyntaxNode>(GetRed(ref _attributes, 3));
1094
public override SyntaxList<RazorSyntaxNode>
Attributes
=> new SyntaxList<RazorSyntaxNode>(GetRed(ref _attributes, 3));
6 references to Attributes
Microsoft.CodeAnalysis.Razor.Compiler (2)
Language\Syntax\BaseMarkupStartTagSyntax.cs (2)
66
foreach (var attribute in
Attributes
)
102
builder.AddRange(
Attributes
);
Microsoft.CodeAnalysis.Razor.Workspaces (4)
CodeActions\Razor\ComponentAccessibilityCodeActionProvider.cs (1)
214
var attributes = TagHelperFacts.StringifyAttributes(startTag.
Attributes
);
Formatting\Passes\CSharpFormattingPass.CSharpDocumentGenerator.cs (1)
765
var firstAttribute = startTag.
Attributes
[0];
HtmlFacts.cs (2)
181
attributeNodes = startTag.
Attributes
;
193
attributeNodes = endTag.GetStartTag()?.
Attributes
?? default;