21 references to DoubleQuotes
Microsoft.AspNetCore.Mvc.Razor.Test (8)
RazorPageTest.cs (2)
1121
page.BeginAddHtmlAttributeValues(executionContext, "someattr", 1, HtmlAttributeValueStyle.
DoubleQuotes
);
1132
Assert.Equal(HtmlAttributeValueStyle.
DoubleQuotes
, attribute.ValueStyle);
TagHelpers\UrlResolutionTagHelperTest.cs (6)
133
Assert.Equal(HtmlAttributeValueStyle.
DoubleQuotes
, attribute.ValueStyle);
193
Assert.Equal(HtmlAttributeValueStyle.
DoubleQuotes
, attribute.ValueStyle);
251
Assert.Equal(HtmlAttributeValueStyle.
DoubleQuotes
, attribute.ValueStyle);
307
Assert.Equal(HtmlAttributeValueStyle.
DoubleQuotes
, attribute.ValueStyle);
337
Assert.Equal(HtmlAttributeValueStyle.
DoubleQuotes
, attribute.ValueStyle);
433
Assert.Equal(HtmlAttributeValueStyle.
DoubleQuotes
, attribute.ValueStyle);
Microsoft.AspNetCore.Mvc.TagHelpers (2)
ScriptTagHelper.cs (2)
396
WriteVersionedSrc(SrcAttributeName, src, HtmlAttributeValueStyle.
DoubleQuotes
, StringWriter);
505
AppendVersionedSrc(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
)
234
case HtmlAttributeValueStyle.
DoubleQuotes
:
249
case HtmlAttributeValueStyle.
DoubleQuotes
:
Microsoft.AspNetCore.Razor.Runtime.Test (7)
Runtime\TagHelpers\TagHelperExecutionContextTest.cs (4)
459
executionContext.AddHtmlAttribute("class", "btn", HtmlAttributeValueStyle.
DoubleQuotes
);
509
executionContext.AddHtmlAttribute("class", "btn", HtmlAttributeValueStyle.
DoubleQuotes
);
510
executionContext.AddHtmlAttribute("foo", "bar", HtmlAttributeValueStyle.
DoubleQuotes
);
537
executionContext.AddHtmlAttribute("class", "btn", HtmlAttributeValueStyle.
DoubleQuotes
);
Runtime\TagHelpers\TagHelperRunnerTest.cs (3)
123
executionContext.AddTagHelperAttribute("foo", true, HtmlAttributeValueStyle.
DoubleQuotes
);
161
executionContext.AddHtmlAttribute("class", "btn", HtmlAttributeValueStyle.
DoubleQuotes
);
182
executionContext.AddTagHelperAttribute("foo", true, HtmlAttributeValueStyle.
DoubleQuotes
);