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.
30 lines
862 B
30 lines
862 B
#nullable disable
|
|
// THIS IS A HACK
|
|
// TODO: @bond Move to separate project
|
|
|
|
using System;
|
|
using System.Text.Json;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace MediaBrowser.Model.Entities
|
|
{
|
|
/// <summary>
|
|
/// Converts an object to a lowercase string.
|
|
/// </summary>
|
|
/// <typeparam name="T">The object type.</typeparam>
|
|
public class JsonLowerCaseConverter<T> : JsonConverter<T>
|
|
{
|
|
/// <inheritdoc />
|
|
public override T Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
|
|
{
|
|
return JsonSerializer.Deserialize<T>(ref reader, options);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override void Write(Utf8JsonWriter writer, T value, JsonSerializerOptions options)
|
|
{
|
|
writer.WriteStringValue(value?.ToString().ToLowerInvariant());
|
|
}
|
|
}
|
|
}
|