2 implementations of CheckBox
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
HtmlHelper.cs (1)
269
public IHtmlContent
CheckBox
(string expression, bool? isChecked, object htmlAttributes)
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (1)
DefaultEditorTemplatesTest.cs (1)
1448
public IHtmlContent
CheckBox
(string name, bool? isChecked, object htmlAttributes)
4 references to CheckBox
Microsoft.AspNetCore.Mvc.ViewFeatures (4)
DefaultEditorTemplates.cs (1)
38
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);