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