3 implementations of TryConvertValue
Microsoft.AspNetCore.Components.Endpoints (3)
FormMapping\Converters\EnumConverter.cs (1)
13
public bool
TryConvertValue
(ref FormDataReader reader, string value, out TEnum result)
FormMapping\Converters\ParsableConverter.cs (1)
13
public bool
TryConvertValue
(ref FormDataReader reader, string value, out T result)
FormMapping\Converters\UriFormDataConverter.cs (1)
13
public bool
TryConvertValue
(ref FormDataReader reader, string value, out Uri result)
2 references to TryConvertValue
Microsoft.AspNetCore.Components.Endpoints (2)
FormMapping\Converters\CollectionConverter.cs (1)
234
if (!singleValueConverter.
TryConvertValue
(ref context, value!, out var elementValue))
FormMapping\Converters\NullableConverter.cs (1)
19
if (converter.
TryConvertValue
(ref reader, value, out var converted))