An open API service indexing awesome lists of open source software.

https://github.com/shuttle/shuttle.core.json

Json.Net implementation of the ISerializer interface.
https://github.com/shuttle/shuttle.core.json

Last synced: about 1 month ago
JSON representation

Json.Net implementation of the ISerializer interface.

Awesome Lists containing this project

README

        

# Shuttle.Core.Json

```
PM> Install-Package Shuttle.Core.Json
```

A `System.Text.Json` implementation of the `ISerializer` interface.

## Usage

``` c#
services.AddJsonSerializer(builder => {
builder.Options = new JsonSerializerOptions
{
};

// or

buidler.Options.option = value;
});
```

The `builder.Options` is of type [JsonSerializerOptions](https://docs.microsoft.com/en-us/dotnet/api/system.text.json.jsonserializeroptions?view=net-6.0).