Implemented interface members:
14 writes to
Microsoft.AspNetCore.Mvc.ViewFeatures (14)
DefaultDisplayTemplates.cs (4)
35
inputTag.Attributes
[
"disabled"] = "disabled";
36
inputTag.Attributes
[
"type"] = "checkbox";
39
inputTag.Attributes
[
"checked"] = "checked";
51
selectTag.Attributes
[
"disabled"] = "disabled";
DefaultHtmlGenerator.cs (3)
1048
tagBuilder.Attributes
[
"value"] = item.Value;
1053
tagBuilder.Attributes
[
"selected"] = "selected";
1058
tagBuilder.Attributes
[
"disabled"] = "disabled";
DefaultHtmlGeneratorExtensions.cs (2)
40
tagBuilder.Attributes
[
"action"] += "#" + fragment;
71
tagBuilder.Attributes
[
"action"] += "#" + fragment;
NameAndIdProvider.cs (1)
114
tagBuilder.Attributes
[
"id"] = sanitizedId;
Rendering\TagBuilder.cs (4)
129
Attributes
[
"class"] = currentValue + " " + value;
133
Attributes
[
"class"] = value;
229
Attributes
[
"id"] = sanitizedId;
283
Attributes
[
key] = value;
1 reference to
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
DefaultHtmlGenerator.cs (1)
1173
var suppliedTypeString = tagBuilder.Attributes
[
"type"];