3 overrides of FormatValueAsString
Microsoft.AspNetCore.Components.Web (3)
Forms\InputDate.cs (1)
100protected override string FormatValueAsString(TValue? value)
Forms\InputNumber.cs (1)
88protected override string? FormatValueAsString(TValue? value)
Forms\InputSelect.cs (1)
71protected override string? FormatValueAsString(TValue? value)
2 references to FormatValueAsString
Microsoft.AspNetCore.Components.Web (2)
Forms\InputBase.cs (1)
113get => _parsingFailed ? _incomingValueBeforeParsing : FormatValueAsString(CurrentValue);
Forms\InputSelect.cs (1)
83return base.FormatValueAsString(value);