2 references to FormatNullableDateTimeOffsetValueCore
Microsoft.AspNetCore.Components (2)
BindConverter.cs (2)
451
public static string? FormatValue(DateTimeOffset? value, CultureInfo? culture = null) =>
FormatNullableDateTimeOffsetValueCore
(value, format: null, culture);
463
public static string? FormatValue(DateTimeOffset? value, string format, CultureInfo? culture = null) =>
FormatNullableDateTimeOffsetValueCore
(value, format, culture);