4 references to TryConvertTo
Microsoft.AspNetCore.Components.Web (4)
Forms\InputDate.cs (1)
113if (BindConverter.TryConvertTo(value, CultureInfo.InvariantCulture, out result))
Forms\InputExtensions.cs (1)
35else if (BindConverter.TryConvertTo<TValue>(value, CultureInfo.CurrentCulture, out var parsedValue))
Forms\InputNumber.cs (1)
71if (BindConverter.TryConvertTo<TValue>(value, CultureInfo.InvariantCulture, out result))
Forms\InputSelect.cs (1)
88CurrentValue = BindConverter.TryConvertTo<TValue>(value, CultureInfo.CurrentCulture, out var result)