4 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)
Microsoft.AspNetCore.Components.Web.Tests (1)
Forms\InputBaseTest.cs (1)
577protected override string FormatValueAsString(DateTime value)
2 references to FormatValueAsString
Microsoft.AspNetCore.Components.Web (2)
Forms\InputBase.cs (1)
112get => _parsingFailed ? _incomingValueBeforeParsing : FormatValueAsString(CurrentValue);
Forms\InputSelect.cs (1)
83return base.FormatValueAsString(value);