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.
39 lines
1.2 KiB
39 lines
1.2 KiB
using System;
|
|
using System.Buffers;
|
|
using System.Text;
|
|
using System.Text.Json;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace MediaBrowser.Common.Json.Converters
|
|
{
|
|
/// <summary>
|
|
/// Converter to allow the serializer to read strings.
|
|
/// </summary>
|
|
public class JsonStringConverter : JsonConverter<string>
|
|
{
|
|
/// <inheritdoc />
|
|
public override string Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
|
|
{
|
|
return reader.TokenType switch
|
|
{
|
|
JsonTokenType.Null => null,
|
|
JsonTokenType.String => reader.GetString(),
|
|
_ => GetRawValue(reader)
|
|
};
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override void Write(Utf8JsonWriter writer, string value, JsonSerializerOptions options)
|
|
{
|
|
writer.WriteStringValue(value);
|
|
}
|
|
|
|
private static string GetRawValue(Utf8JsonReader reader)
|
|
{
|
|
var utf8Bytes = reader.HasValueSequence
|
|
? reader.ValueSequence.ToArray()
|
|
: reader.ValueSpan;
|
|
return Encoding.UTF8.GetString(utf8Bytes);
|
|
}
|
|
}
|
|
} |