3 writes to RawValue
Microsoft.AspNetCore.Mvc.Abstractions (3)
ModelBinding\ModelStateDictionary.cs (3)
477modelState.RawValue = rawValue; 854RawValue = entry.RawValue; 868RawValue = null;
5 references to RawValue
Microsoft.AspNetCore.Mvc.Abstractions (3)
ModelBinding\ModelStateDictionary.cs (2)
463/// Sets the of <see cref="ModelStateEntry.RawValue"/> and <see cref="ModelStateEntry.AttemptedValue"/> for 854RawValue = entry.RawValue;
ModelBinding\ModelStateEntry.cs (1)
19/// Gets the set of values contained in <see cref="RawValue"/>, joined into a comma-separated string.
Microsoft.AspNetCore.Mvc.ViewFeatures (2)
DefaultHtmlGenerator.cs (2)
1066if (viewContext.ViewData.ModelState.TryGetValue(key, out var entry) && entry.RawValue != null) 1068return ModelBindingHelper.ConvertTo(entry.RawValue, destinationType, culture: null);