1 implementation of CheckBox
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
HtmlHelper.cs (1)
269public IHtmlContent CheckBox(string expression, bool? isChecked, object htmlAttributes)
4 references to CheckBox
Microsoft.AspNetCore.Mvc.ViewFeatures (4)
DefaultEditorTemplates.cs (1)
39return htmlHelper.CheckBox(
Rendering\HtmlHelperInputExtensions.cs (3)
35return htmlHelper.CheckBox(expression, isChecked: null, htmlAttributes: null); 64return htmlHelper.CheckBox(expression, isChecked, htmlAttributes: null); 97return htmlHelper.CheckBox(expression, isChecked: null, htmlAttributes: htmlAttributes);