2 references to FormatNullableDateOnlyValueCore
Microsoft.AspNetCore.Components (2)
BindConverter.cs (2)
538
public static string? FormatValue(DateOnly? value, CultureInfo? culture = null) =>
FormatNullableDateOnlyValueCore
(value, format: null, culture);
550
public static string? FormatValue(DateOnly? value, [StringSyntax(StringSyntaxAttribute.DateOnlyFormat)] string format, CultureInfo? culture = null) =>
FormatNullableDateOnlyValueCore
(value, format, culture);