Shuttle.Core.Json

Json.Net implementation of the `ISerializer` interface.


Keywords
shuttle, serialization, json, iserializer
License
BSD-3-Clause
Install
Install-Package Shuttle.Core.Json -Version 10.0.0

Documentation

Shuttle.Core.Json

PM> Install-Package Shuttle.Core.Json

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

Usage

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

	// or

	buidler.Options.option = value;
});

The builder.Options is of type JsonSerializerOptions.