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