30 references to BindFormatter
Microsoft.AspNetCore.Components (30)
BindConverter.cs (30)
687var formatter = FormatterDelegateCache.Get<T>(); 1693public static BindFormatter<T> Get<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.All)] T>() 1701formatter = (BindFormatter<string>)FormatStringValueCore; 1705formatter = (BindFormatter<bool>)FormatBoolValueCore; 1709formatter = (BindFormatter<bool?>)FormatNullableBoolValueCore; 1713formatter = (BindFormatter<int>)FormatIntValueCore; 1717formatter = (BindFormatter<int?>)FormatNullableIntValueCore; 1721formatter = (BindFormatter<long>)FormatLongValueCore; 1725formatter = (BindFormatter<long?>)FormatNullableLongValueCore; 1729formatter = (BindFormatter<short>)FormatShortValueCore; 1733formatter = (BindFormatter<short?>)FormatNullableShortValueCore; 1737formatter = (BindFormatter<float>)FormatFloatValueCore; 1741formatter = (BindFormatter<float?>)FormatNullableFloatValueCore; 1745formatter = (BindFormatter<double>)FormatDoubleValueCore; 1749formatter = (BindFormatter<double?>)FormatNullableDoubleValueCore; 1753formatter = (BindFormatter<decimal>)FormatDecimalValueCore; 1757formatter = (BindFormatter<decimal?>)FormatNullableDecimalValueCore; 1761formatter = (BindFormatter<DateTime>)FormatDateTimeValueCore; 1765formatter = (BindFormatter<DateTime?>)FormatNullableDateTimeValueCore; 1769formatter = (BindFormatter<DateTimeOffset>)FormatDateTimeOffsetValueCore; 1773formatter = (BindFormatter<DateTimeOffset?>)FormatNullableDateTimeOffsetValueCore; 1777formatter = (BindFormatter<DateOnly>)FormatDateOnlyValueCore; 1781formatter = (BindFormatter<DateOnly?>)FormatNullableDateOnlyValueCore; 1785formatter = (BindFormatter<TimeOnly>)FormatTimeOnlyValueCore; 1789formatter = (BindFormatter<TimeOnly?>)FormatNullableTimeOnlyValueCore; 1793formatter = (BindFormatter<T>)FormatEnumValueCore<T>; 1809return (BindFormatter<T>)formatter; 1812private static BindFormatter<T[]> MakeArrayFormatter<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.All)] T>() 1814var elementFormatter = Get<T>(); 1843private static BindFormatter<T> MakeTypeConverterFormatter<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.All)] T>()