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