10 references to NoQuotes
Microsoft.AspNetCore.Mvc.Razor.Test (3)
RazorPageTest.cs (3)
1151page.BeginAddHtmlAttributeValues(executionContext, "someattr", 1, HtmlAttributeValueStyle.NoQuotes); 1160Assert.Equal(HtmlAttributeValueStyle.NoQuotes, htmlAttribute.ValueStyle); 1165Assert.Equal(HtmlAttributeValueStyle.NoQuotes, allAttribute.ValueStyle);
Microsoft.AspNetCore.Razor (1)
TagHelpers\TagHelperAttribute.cs (1)
238case HtmlAttributeValueStyle.NoQuotes:
Microsoft.AspNetCore.Razor.Runtime.Test (4)
Runtime\TagHelpers\TagHelperExecutionContextTest.cs (4)
504expectedAttributes.Add(new TagHelperAttribute("valid", "true", HtmlAttributeValueStyle.NoQuotes)); 512executionContext.AddHtmlAttribute("valid", "true", HtmlAttributeValueStyle.NoQuotes); 535expectedAttributes.Add(new TagHelperAttribute("type", "text", HtmlAttributeValueStyle.NoQuotes)); 540executionContext.AddHtmlAttribute("type", "text", HtmlAttributeValueStyle.NoQuotes);
Microsoft.AspNetCore.Razor.Test (2)
TagHelpers\TagHelperOutputTest.cs (2)
480{ new TagHelperAttribute("test", "testVal", HtmlAttributeValueStyle.NoQuotes) }, 544new TagHelperAttribute("last", "unminimized", HtmlAttributeValueStyle.NoQuotes),