18 lines
684 B
C#
18 lines
684 B
C#
|
|
using System.Text.Json;
|
|||
|
|
|
|||
|
|
namespace Umbraco.Cms.ManagementApi.Serialization;
|
|||
|
|
|
|||
|
|
public class SystemTextJsonSerializer : ISystemTextJsonSerializer
|
|||
|
|
{
|
|||
|
|
private JsonSerializerOptions _jsonSerializerOptions;
|
|||
|
|
public SystemTextJsonSerializer()
|
|||
|
|
{
|
|||
|
|
_jsonSerializerOptions = new JsonSerializerOptions { PropertyNamingPolicy = JsonNamingPolicy.CamelCase };
|
|||
|
|
}
|
|||
|
|
public string Serialize(object? input) => JsonSerializer.Serialize(input, _jsonSerializerOptions);
|
|||
|
|
|
|||
|
|
public T? Deserialize<T>(string input) => JsonSerializer.Deserialize<T>(input, _jsonSerializerOptions);
|
|||
|
|
|
|||
|
|
public T? DeserializeSubset<T>(string input, string key) => throw new NotSupportedException();
|
|||
|
|
}
|