OneOf.Serialization.SystemTextJson
1.1.1
dotnet add package OneOf.Serialization.SystemTextJson --version 1.1.1
NuGet\Install-Package OneOf.Serialization.SystemTextJson -Version 1.1.1
<PackageReference Include="OneOf.Serialization.SystemTextJson" Version="1.1.1" />
paket add OneOf.Serialization.SystemTextJson --version 1.1.1
#r "nuget: OneOf.Serialization.SystemTextJson, 1.1.1"
// Install OneOf.Serialization.SystemTextJson as a Cake Addin #addin nuget:?package=OneOf.Serialization.SystemTextJson&version=1.1.1 // Install OneOf.Serialization.SystemTextJson as a Cake Tool #tool nuget:?package=OneOf.Serialization.SystemTextJson&version=1.1.1
JSON serialization
This library provides support for JSON serialization and deserialization of OneOf
types using System.Text.Json
.
Usage
Add a reference to OneOf.Serialization.SystemTextJson
in your .csproj
:
<ItemGroup>
<PackageReference Include="OneOf.Serialization.SystemTextJson" Version="1.1.1"/>
</ItemGroup>
This provides access to two JsonConverter
classes. Create a JsonSerializerOptions
with both converters:
var serializerOptions = new JsonSerializerOptions
{
Converters =
{
new OneOfJsonConverter(),
new OneOfBaseJsonConverter(),
},
};
(You can omit OneOfBaseJsonConverter
if you are not serializing types derived from OneOfBase
but not the other way around.)
Then serialize and deserialize using the serializerOptions
:
var json = JsonSerializer.Serialize(oneOfToSerialize, serializerOptions);
var deserializeOneOf = JsonSerializer.Deserialize<OneOf<Foo, Bar, Baz>>(json, serializerOptions);
JSON format
In the case of an OneOf
with types Foo
, Bar
and Baz
that all serialize to JSON objects the generated JSON will be one of the following:
When Foo
is the value:
{
"Foo": {
// ...
}
}
When Bar
is the value:
{
"Bar": {
// ...
}
}
And when Baz
is the value:
{
"Baz": {
// ...
}
}
See project repository for more information.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- OneOf (>= 3.0.263)
- System.Text.Json (>= 7.0.3)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on OneOf.Serialization.SystemTextJson:
Package | Downloads |
---|---|
Reliance.Titan.Core
Package designed by Reliance Consultoria that provides support for handling cross-cutting concerns in our Microservices. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.1.1 | 39,112 | 11/5/2023 |