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.
|
|
|
|
using System;
|
|
|
|
|
using System.Text.Json;
|
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Common.Json.Converters
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Converts a number to a boolean.
|
|
|
|
|
/// This is needed for HDHomerun.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class JsonBoolNumberConverter : JsonConverter<bool>
|
|
|
|
|
{
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public override bool Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
|
|
|
|
|
{
|
|
|
|
|
if (reader.TokenType == JsonTokenType.Number)
|
|
|
|
|
{
|
|
|
|
|
return Convert.ToBoolean(reader.GetInt32());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return reader.GetBoolean();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public override void Write(Utf8JsonWriter writer, bool value, JsonSerializerOptions options)
|
|
|
|
|
{
|
|
|
|
|
writer.WriteBooleanValue(value);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|