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