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