30 references to BindFormatter
Microsoft.AspNetCore.Components (30)
BindConverter.cs (30)
688var formatter = FormatterDelegateCache.Get<T>(); 1743public static BindFormatter<T> Get<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.All)] T>() 1751formatter = (BindFormatter<string>)FormatStringValueCore; 1755formatter = (BindFormatter<bool>)FormatBoolValueCore; 1759formatter = (BindFormatter<bool?>)FormatNullableBoolValueCore; 1763formatter = (BindFormatter<int>)FormatIntValueCore; 1767formatter = (BindFormatter<int?>)FormatNullableIntValueCore; 1771formatter = (BindFormatter<long>)FormatLongValueCore; 1775formatter = (BindFormatter<long?>)FormatNullableLongValueCore; 1779formatter = (BindFormatter<short>)FormatShortValueCore; 1783formatter = (BindFormatter<short?>)FormatNullableShortValueCore; 1787formatter = (BindFormatter<float>)FormatFloatValueCore; 1791formatter = (BindFormatter<float?>)FormatNullableFloatValueCore; 1795formatter = (BindFormatter<double>)FormatDoubleValueCore; 1799formatter = (BindFormatter<double?>)FormatNullableDoubleValueCore; 1803formatter = (BindFormatter<decimal>)FormatDecimalValueCore; 1807formatter = (BindFormatter<decimal?>)FormatNullableDecimalValueCore; 1811formatter = (BindFormatter<DateTime>)FormatDateTimeValueCore; 1815formatter = (BindFormatter<DateTime?>)FormatNullableDateTimeValueCore; 1819formatter = (BindFormatter<DateTimeOffset>)FormatDateTimeOffsetValueCore; 1823formatter = (BindFormatter<DateTimeOffset?>)FormatNullableDateTimeOffsetValueCore; 1827formatter = (BindFormatter<DateOnly>)FormatDateOnlyValueCore; 1831formatter = (BindFormatter<DateOnly?>)FormatNullableDateOnlyValueCore; 1835formatter = (BindFormatter<TimeOnly>)FormatTimeOnlyValueCore; 1839formatter = (BindFormatter<TimeOnly?>)FormatNullableTimeOnlyValueCore; 1843formatter = (BindFormatter<T>)FormatEnumValueCore<T>; 1859return (BindFormatter<T>)formatter; 1862private static BindFormatter<T[]> MakeArrayFormatter<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.All)] T>() 1864var elementFormatter = Get<T>(); 1893private static BindFormatter<T> MakeTypeConverterFormatter<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.All)] T>()