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