2 references to FormatTimeOnlyValueCore
Microsoft.AspNetCore.Components (2)
BindConverter.cs (2)
588
public static string FormatValue(TimeOnly value, CultureInfo? culture = null) =>
FormatTimeOnlyValueCore
(value, format: null, culture);
600
public static string FormatValue(TimeOnly value, [StringSyntax(StringSyntaxAttribute.TimeOnlyFormat)] string format, CultureInfo? culture = null) =>
FormatTimeOnlyValueCore
(value, format, culture);