2 implementations of ListBox
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
HtmlHelper.cs (1)
429public IHtmlContent ListBox(string expression, IEnumerable<SelectListItem> selectList, object htmlAttributes)
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (1)
DefaultEditorTemplatesTest.cs (1)
1540public IHtmlContent ListBox(string name, IEnumerable<SelectListItem> selectList, object htmlAttributes)
2 references to ListBox
Microsoft.AspNetCore.Mvc.ViewFeatures (2)
Rendering\HtmlHelperSelectExtensions.cs (2)
341return htmlHelper.ListBox(expression, selectList: null, htmlAttributes: null); 375return htmlHelper.ListBox(expression, selectList, htmlAttributes: null);