3 writes to RawValue
Microsoft.AspNetCore.Mvc.Abstractions (3)
ModelBinding\ModelStateDictionary.cs (3)
477
modelState.
RawValue
= rawValue;
854
RawValue
= entry.RawValue;
868
RawValue
= 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
854
RawValue = 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)
1066
if (viewContext.ViewData.ModelState.TryGetValue(key, out var entry) && entry.
RawValue
!= null)
1068
return ModelBindingHelper.ConvertTo(entry.
RawValue
, destinationType, culture: null);