Iciclecreek.Json.Net.DependencyInjection
1.0.1
dotnet add package Iciclecreek.Json.Net.DependencyInjection --version 1.0.1
NuGet\Install-Package Iciclecreek.Json.Net.DependencyInjection -Version 1.0.1
<PackageReference Include="Iciclecreek.Json.Net.DependencyInjection" Version="1.0.1" />
paket add Iciclecreek.Json.Net.DependencyInjection --version 1.0.1
#r "nuget: Iciclecreek.Json.Net.DependencyInjection, 1.0.1"
// Install Iciclecreek.Json.Net.DependencyInjection as a Cake Addin #addin nuget:?package=Iciclecreek.Json.Net.DependencyInjection&version=1.0.1 // Install Iciclecreek.Json.Net.DependencyInjection as a Cake Tool #tool nuget:?package=Iciclecreek.Json.Net.DependencyInjection&version=1.0.1
Iciclecreek.Json.Net.DependencyInjection
This library implements a JSON.NET converter which will use IServiceProvider to perform dependency injection as needed while deserializing.
Add NUGET package
To add to your project add
dotnet add package Iciclecreek.Json.Net.DependencyInjection
Description
There are 2 classes in this library
- ServiceProviderConverter - a universal converter which will use the IServiceProvider to instantiate objects that do not have a parameterless converter
- ServiceProviderConvert<T> - A typed converter which will use IServiceProvider only for the given type T.
Usage
To use these converters you add them to the converters collection on JsonSerializerSettings object.
Example for universal types needing dependency injection:
IServiceProvider serviceProvider = new ServiceCollection()
.AddSingleton<JsonSerializerSettings>((sp) => new JsonSerializerSettings()
{
Converters = new List<JsonConverter>()
{
new ServiceProviderConverter(sp)
}
})
// .., add other dependencies as needed ...
.BuildServiceProvider();
Example for explicit resgistration just for types that need dependency injection:
IServiceProvider serviceProvider = new ServiceCollection()
.AddSingleton<JsonSerializerSettings>((sp) => new JsonSerializerSettings()
{
Converters = new List<JsonConverter>()
{
new ServiceProviderConverter<Obj1>(sp),
new ServiceProviderConverter<Obj2>(sp),
new ServiceProviderConverter<Obj3>(sp)
}
})
// .., add other dependencies as needed ...
.BuildServiceProvider();
NOTE: Registering for objects explicitely is slighty faster on first deserialization because the universal converter has to detect when an object can't be created.
Then simply use your json serializer settings when deserializing:
var result = JsonConvert.DeserializeObject<MyClass>(json, serviceProvider.GetRequiredService<JsonSerializerSettings>());
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. |
-
net8.0
- Microsoft.Extensions.DependencyInjection (>= 8.0.0)
- Newtonsoft.Json (>= 13.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.