30 references to BindFormatter
Microsoft.AspNetCore.Components (30)
BindConverter.cs (30)
686var formatter = FormatterDelegateCache.Get<T>(); 1680public static BindFormatter<T> Get<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.All)] T>() 1688formatter = (BindFormatter<string>)FormatStringValueCore; 1692formatter = (BindFormatter<bool>)FormatBoolValueCore; 1696formatter = (BindFormatter<bool?>)FormatNullableBoolValueCore; 1700formatter = (BindFormatter<int>)FormatIntValueCore; 1704formatter = (BindFormatter<int?>)FormatNullableIntValueCore; 1708formatter = (BindFormatter<long>)FormatLongValueCore; 1712formatter = (BindFormatter<long?>)FormatNullableLongValueCore; 1716formatter = (BindFormatter<short>)FormatShortValueCore; 1720formatter = (BindFormatter<short?>)FormatNullableShortValueCore; 1724formatter = (BindFormatter<float>)FormatFloatValueCore; 1728formatter = (BindFormatter<float?>)FormatNullableFloatValueCore; 1732formatter = (BindFormatter<double>)FormatDoubleValueCore; 1736formatter = (BindFormatter<double?>)FormatNullableDoubleValueCore; 1740formatter = (BindFormatter<decimal>)FormatDecimalValueCore; 1744formatter = (BindFormatter<decimal?>)FormatNullableDecimalValueCore; 1748formatter = (BindFormatter<DateTime>)FormatDateTimeValueCore; 1752formatter = (BindFormatter<DateTime?>)FormatNullableDateTimeValueCore; 1756formatter = (BindFormatter<DateTimeOffset>)FormatDateTimeOffsetValueCore; 1760formatter = (BindFormatter<DateTimeOffset?>)FormatNullableDateTimeOffsetValueCore; 1764formatter = (BindFormatter<DateOnly>)FormatDateOnlyValueCore; 1768formatter = (BindFormatter<DateOnly?>)FormatNullableDateOnlyValueCore; 1772formatter = (BindFormatter<TimeOnly>)FormatTimeOnlyValueCore; 1776formatter = (BindFormatter<TimeOnly?>)FormatNullableTimeOnlyValueCore; 1780formatter = (BindFormatter<T>)FormatEnumValueCore<T>; 1796return (BindFormatter<T>)formatter; 1799private static BindFormatter<T[]> MakeArrayFormatter<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.All)] T>() 1801var elementFormatter = Get<T>(); 1830private static BindFormatter<T> MakeTypeConverterFormatter<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.All)] T>()