5 references to GetModelStateValue
Microsoft.AspNetCore.Mvc.ViewFeatures (5)
DefaultHtmlGenerator.cs (4)
910var rawValue = GetModelStateValue(viewContext, fullName, type); 1200var modelStateWasChecked = GetModelStateValue(viewContext, fullName, typeof(bool)) as bool?; 1212if (GetModelStateValue(viewContext, fullName, typeof(string)) is string modelStateValue) 1249var attributeValue = (string)GetModelStateValue(viewContext, fullName, typeof(string));
HtmlHelper.cs (1)
1334(string)DefaultHtmlGenerator.GetModelStateValue(ViewContext, fullName, typeof(string));