23 instantiations of ParsableConverter
Microsoft.AspNetCore.Components.Endpoints (23)
FormMapping\WellKnownConverters.cs (23)
23
{ typeof(string), new
ParsableConverter
<string>() },
24
{ typeof(char), new
ParsableConverter
<char>() },
25
{ typeof(bool), new
ParsableConverter
<bool>() },
26
{ typeof(byte), new
ParsableConverter
<byte>() },
27
{ typeof(sbyte), new
ParsableConverter
<sbyte>() },
28
{ typeof(ushort), new
ParsableConverter
<ushort>() },
29
{ typeof(uint), new
ParsableConverter
<uint>() },
30
{ typeof(ulong), new
ParsableConverter
<ulong>() },
31
{ typeof(Int128), new
ParsableConverter
<Int128>() },
32
{ typeof(short), new
ParsableConverter
<short>() },
33
{ typeof(int), new
ParsableConverter
<int>() },
34
{ typeof(long), new
ParsableConverter
<long>() },
35
{ typeof(UInt128), new
ParsableConverter
<UInt128>() },
36
{ typeof(Half), new
ParsableConverter
<Half>() },
37
{ typeof(float), new
ParsableConverter
<float>() },
38
{ typeof(double), new
ParsableConverter
<double>() },
39
{ typeof(decimal), new
ParsableConverter
<decimal>() },
40
{ typeof(DateOnly), new
ParsableConverter
<DateOnly>() },
41
{ typeof(DateTime), new
ParsableConverter
<DateTime>() },
42
{ typeof(DateTimeOffset), new
ParsableConverter
<DateTimeOffset>() },
43
{ typeof(TimeSpan), new
ParsableConverter
<TimeSpan>() },
44
{ typeof(TimeOnly), new
ParsableConverter
<TimeOnly>() },
45
{ typeof(Guid), new
ParsableConverter
<Guid>() },
1 reference to ParsableConverter
Microsoft.AspNetCore.Components.Endpoints (1)
FormMapping\Factories\ParsableConverterFactory.cs (1)
24
return Activator.CreateInstance(typeof(
ParsableConverter
<>).MakeGenericType(type)) as FormDataConverter ??