21 references to DoubleQuotes
Microsoft.AspNetCore.Mvc.Razor.Test (8)
RazorPageTest.cs (2)
1121page.BeginAddHtmlAttributeValues(executionContext, "someattr", 1, HtmlAttributeValueStyle.DoubleQuotes); 1132Assert.Equal(HtmlAttributeValueStyle.DoubleQuotes, attribute.ValueStyle);
TagHelpers\UrlResolutionTagHelperTest.cs (6)
133Assert.Equal(HtmlAttributeValueStyle.DoubleQuotes, attribute.ValueStyle); 193Assert.Equal(HtmlAttributeValueStyle.DoubleQuotes, attribute.ValueStyle); 251Assert.Equal(HtmlAttributeValueStyle.DoubleQuotes, attribute.ValueStyle); 307Assert.Equal(HtmlAttributeValueStyle.DoubleQuotes, attribute.ValueStyle); 337Assert.Equal(HtmlAttributeValueStyle.DoubleQuotes, attribute.ValueStyle); 433Assert.Equal(HtmlAttributeValueStyle.DoubleQuotes, attribute.ValueStyle);
Microsoft.AspNetCore.Mvc.TagHelpers (2)
ScriptTagHelper.cs (2)
396WriteVersionedSrc(SrcAttributeName, src, HtmlAttributeValueStyle.DoubleQuotes, StringWriter); 505AppendVersionedSrc(SrcAttributeName, src, HtmlAttributeValueStyle.DoubleQuotes, builder);
Microsoft.AspNetCore.Razor (4)
TagHelpers\TagHelperAttribute.cs (4)
27/// and <paramref name="value"/>. <see cref="ValueStyle"/> is set to <see cref="HtmlAttributeValueStyle.DoubleQuotes"/>. 32: this(name, value, valueStyle: HtmlAttributeValueStyle.DoubleQuotes) 234case HtmlAttributeValueStyle.DoubleQuotes: 249case HtmlAttributeValueStyle.DoubleQuotes:
Microsoft.AspNetCore.Razor.Runtime.Test (7)
Runtime\TagHelpers\TagHelperExecutionContextTest.cs (4)
460executionContext.AddHtmlAttribute("class", "btn", HtmlAttributeValueStyle.DoubleQuotes); 510executionContext.AddHtmlAttribute("class", "btn", HtmlAttributeValueStyle.DoubleQuotes); 511executionContext.AddHtmlAttribute("foo", "bar", HtmlAttributeValueStyle.DoubleQuotes); 538executionContext.AddHtmlAttribute("class", "btn", HtmlAttributeValueStyle.DoubleQuotes);
Runtime\TagHelpers\TagHelperRunnerTest.cs (3)
123executionContext.AddTagHelperAttribute("foo", true, HtmlAttributeValueStyle.DoubleQuotes); 161executionContext.AddHtmlAttribute("class", "btn", HtmlAttributeValueStyle.DoubleQuotes); 182executionContext.AddTagHelperAttribute("foo", true, HtmlAttributeValueStyle.DoubleQuotes);