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.
24 lines
797 B
24 lines
797 B
using System;
|
|
using System.Text.Json;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace MediaBrowser.Common.Json.Converters
|
|
{
|
|
/// <summary>
|
|
/// Converts a Version object or value to/from JSON.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Required to send <see cref="Version"/> as a string instead of an object.
|
|
/// </remarks>
|
|
public class JsonVersionConverter : JsonConverter<Version>
|
|
{
|
|
/// <inheritdoc />
|
|
public override Version Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
|
|
=> new Version(reader.GetString());
|
|
|
|
/// <inheritdoc />
|
|
public override void Write(Utf8JsonWriter writer, Version value, JsonSerializerOptions options)
|
|
=> writer.WriteStringValue(value.ToString());
|
|
}
|
|
}
|