You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
806 B
25 lines
806 B
using System;
|
|
using System.Globalization;
|
|
using System.Text.Json;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace MediaBrowser.Common.Json.Converters
|
|
{
|
|
/// <summary>
|
|
/// Returns an ISO8601 formatted datetime.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Used for legacy compatibility.
|
|
/// </remarks>
|
|
public class JsonDateTimeIso8601Converter : JsonConverter<DateTime>
|
|
{
|
|
/// <inheritdoc />
|
|
public override DateTime Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
|
|
=> reader.GetDateTime();
|
|
|
|
/// <inheritdoc />
|
|
public override void Write(Utf8JsonWriter writer, DateTime value, JsonSerializerOptions options)
|
|
=> writer.WriteStringValue(value.ToString("O", CultureInfo.InvariantCulture));
|
|
}
|
|
}
|