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