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.
31 lines
933 B
31 lines
933 B
using System.Text.Json;
|
|
using System.Text.Json.Serialization;
|
|
using MediaBrowser.Common.Json.Converters;
|
|
|
|
namespace MediaBrowser.Common.Json
|
|
{
|
|
/// <summary>
|
|
/// Helper class for having compatible JSON throughout the codebase.
|
|
/// </summary>
|
|
public static class JsonDefaults
|
|
{
|
|
/// <summary>
|
|
/// Gets the default <see cref="JsonSerializerOptions" /> options.
|
|
/// </summary>
|
|
/// <returns>The default <see cref="JsonSerializerOptions" /> options.</returns>
|
|
public static JsonSerializerOptions GetOptions()
|
|
{
|
|
var options = new JsonSerializerOptions()
|
|
{
|
|
ReadCommentHandling = JsonCommentHandling.Disallow,
|
|
WriteIndented = false
|
|
};
|
|
|
|
options.Converters.Add(new GuidConverter());
|
|
options.Converters.Add(new JsonStringEnumConverter());
|
|
|
|
return options;
|
|
}
|
|
}
|
|
}
|