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.
- Host: GitHub
- URL: https://github.com/shuttle/shuttle.core.json
- Owner: Shuttle
- License: bsd-3-clause
- Created: 2016-09-04T17:12:50.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-11-24T06:57:24.000Z (6 months ago)
- Last Synced: 2025-04-09T10:27:41.578Z (about 1 month ago)
- Language: C#
- Size: 95.7 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).