2 writes to Property3
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (2)
Rendering\HtmlHelperListBoxExtensionsTest.cs (2)
59
helper.ViewData.Model = new TestModel {
Property3
= new List<string> { "4" } };
131
helper.ViewData.Model = new TestModel {
Property3
= new List<string> { "0", "4", "5" } };
2 references to Property3
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (2)
Rendering\HtmlHelperListBoxExtensionsTest.cs (2)
134
var listBoxForResult = helper.ListBoxFor(m => m.
Property3
, selectList);
159
var listBoxForResult = helper.ListBoxFor(m => m.
Property3
, selectList, new { Key = "Value", name = "CustomName" });