Implemented interface member:
method
ListBoxFor<TResult>
Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper<TModel>.ListBoxFor<TResult>(System.Linq.Expressions.Expression<System.Func<TModel, TResult>>, System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Mvc.Rendering.SelectListItem>, System.Object)
7 references to ListBoxFor
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (7)
Rendering\HtmlHelperListBoxExtensionsTest.cs (1)
159var listBoxForResult = helper.ListBoxFor(m => m.Property3, selectList, new { Key = "Value", name = "CustomName" });
Rendering\HtmlHelperSelectTest.cs (6)
1007var html = helper.ListBoxFor(value => value.Property1, selectList, htmlAttributes: null); 1028var html = helper.ListBoxFor(value => value.Property1, selectList, htmlAttributes: null); 1052var html = helper.ListBoxFor(value => unrelated, selectList, htmlAttributes: null); 1073var html = helper.ListBoxFor(value => value.Property1, selectList, htmlAttributes: null); 1241var html = helper.ListBoxFor(value => value, selectList, htmlAttributes: null); 1263var html = helper.ListBoxFor(value => value, selectList, htmlAttributes: null);