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