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")); 478new TagHelperAttribute("checked"), 479new TagHelperAttribute("visible"), 483executionContext.AddHtmlAttribute(new TagHelperAttribute("checked")); 484executionContext.AddHtmlAttribute(new TagHelperAttribute("visible")); 506expectedAttributes.Add(new TagHelperAttribute(name: "checked")); 507expectedAttributes.Add(new TagHelperAttribute(name: "visible")); 514executionContext.AddHtmlAttribute(new TagHelperAttribute("checked")); 515executionContext.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)
496new TagHelperAttribute("test"), 511new TagHelperAttribute("test"), 512new TagHelperAttribute("test2"), 528new TagHelperAttribute("test"), 543new TagHelperAttribute("test"),
TagHelpersWebSite (1)
TagHelpers\AddProcessedAttributeTagHelper.cs (1)
13output.Attributes.Add(new TagHelperAttribute("processed"));