11 references to AddHtmlAttribute
Microsoft.AspNetCore.Mvc.Razor (2)
RazorPageBase.cs (2)
625
_tagHelperAttributeInfo.ExecutionContext.
AddHtmlAttribute
(
667
executionContext.
AddHtmlAttribute
(_tagHelperAttributeInfo.Name, content, _tagHelperAttributeInfo.AttributeValueStyle);
Microsoft.AspNetCore.Razor.Runtime.Test (9)
Runtime\TagHelpers\TagHelperExecutionContextTest.cs (8)
459
executionContext.
AddHtmlAttribute
("class", "btn", HtmlAttributeValueStyle.DoubleQuotes);
460
executionContext.
AddHtmlAttribute
("type", "text", HtmlAttributeValueStyle.SingleQuotes);
509
executionContext.
AddHtmlAttribute
("class", "btn", HtmlAttributeValueStyle.DoubleQuotes);
510
executionContext.
AddHtmlAttribute
("foo", "bar", HtmlAttributeValueStyle.DoubleQuotes);
511
executionContext.
AddHtmlAttribute
("valid", "true", HtmlAttributeValueStyle.NoQuotes);
512
executionContext.
AddHtmlAttribute
("type", "text", HtmlAttributeValueStyle.SingleQuotes);
537
executionContext.
AddHtmlAttribute
("class", "btn", HtmlAttributeValueStyle.DoubleQuotes);
539
executionContext.
AddHtmlAttribute
("type", "text", HtmlAttributeValueStyle.NoQuotes);
Runtime\TagHelpers\TagHelperRunnerTest.cs (1)
161
executionContext.
AddHtmlAttribute
("class", "btn", HtmlAttributeValueStyle.DoubleQuotes);