21 references to TagHelperAttribute
Microsoft.AspNetCore.Razor.Runtime.Test (12)
Runtime\TagHelpers\TagHelperExecutionContextTest.cs (12)
117executionContext.AddHtmlAttribute(new TagHelperAttribute("something")); 126executionContext.AddHtmlAttribute(new TagHelperAttribute("Another attribute")); 169executionContext.AddHtmlAttribute(new TagHelperAttribute("something")); 178executionContext.AddHtmlAttribute(new TagHelperAttribute("Another attribute")); 477new TagHelperAttribute("checked"), 478new TagHelperAttribute("visible"), 482executionContext.AddHtmlAttribute(new TagHelperAttribute("checked")); 483executionContext.AddHtmlAttribute(new TagHelperAttribute("visible")); 505expectedAttributes.Add(new TagHelperAttribute(name: "checked")); 506expectedAttributes.Add(new TagHelperAttribute(name: "visible")); 513executionContext.AddHtmlAttribute(new TagHelperAttribute("checked")); 514executionContext.AddHtmlAttribute(new TagHelperAttribute("visible"));
Microsoft.AspNetCore.Razor.Test (8)
TagHelpers\ReadOnlyTagHelperAttributeListTest.cs (3)
193new TagHelperAttribute("A"), 194new TagHelperAttribute("B"), 195new TagHelperAttribute("C")
TagHelpers\TagHelperOutputTest.cs (5)
495new TagHelperAttribute("test"), 510new TagHelperAttribute("test"), 511new TagHelperAttribute("test2"), 527new TagHelperAttribute("test"), 542new TagHelperAttribute("test"),
TagHelpersWebSite (1)
TagHelpers\AddProcessedAttributeTagHelper.cs (1)
13output.Attributes.Add(new TagHelperAttribute("processed"));