Implemented interface member:
method
CheckBoxFor
Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper<TModel>.CheckBoxFor(System.Linq.Expressions.Expression<System.Func<TModel, System.Boolean>>, System.Object)
9 references to CheckBoxFor
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (9)
Rendering\HtmlHelperCheckboxTest.cs (9)
574var html = helper.CheckBoxFor(m => m.Property1, htmlAttributes: null); 603var html = helper.CheckBoxFor(m => m.Property1, htmlAttributes: null); 622var html = helper.CheckBoxFor(m => m.Property3, new { @checked = "checked", value = "false" }); 645var html = helper.CheckBoxFor(m => m.Name, htmlAttributes: null); 669var html = helper.CheckBoxFor(m => m.Property1, htmlAttributes: null); 689var html = helper.CheckBoxFor(m => m.Property1, htmlAttributes); 714var html = helper.CheckBoxFor(m => m.Property1, attributes); 735var html = helper.CheckBoxFor(m => m.Property1, attributes); 754var html = helper.CheckBoxFor(m => m.ComplexProperty.Property1, htmlAttributes: null);