Shadow.Quack.Json
1.4.7
dotnet add package Shadow.Quack.Json --version 1.4.7
NuGet\Install-Package Shadow.Quack.Json -Version 1.4.7
<PackageReference Include="Shadow.Quack.Json" Version="1.4.7" />
paket add Shadow.Quack.Json --version 1.4.7
#r "nuget: Shadow.Quack.Json, 1.4.7"
// Install Shadow.Quack.Json as a Cake Addin #addin nuget:?package=Shadow.Quack.Json&version=1.4.7 // Install Shadow.Quack.Json as a Cake Tool #tool nuget:?package=Shadow.Quack.Json&version=1.4.7
Shadow Quack JSON
This package allows the easy population of values directly from a JSON string to a dynamically implemented immutable interface
with the help of the base Shadow Quack package.
This means that there is almost no effort in deserialising from JSON to an interface
with no need for concrete implementations or additional code.
public interface IJsonProxyTestInterface
{
bool Boolean { get; }
decimal DecimalNumber { get; }
int Number { get; }
IEnumerable<int> Numbers { get; }
IEnumerable<string> Strings { get; }
string Name { get; }
string Type { get; }
}
JsonProxy input = "{\"boolean\":true}";
var result = Duck.Implement<IJsonProxyTestInterface>(input);
var input = "{\"number\":1, \"decimalNumber\":1.6}";
var result = Duck.Implement<IJsonProxyTestInterface>((JsonProxy) input);
var result = Duck.Implement<IJsonProxyTestInterface>((JsonProxy) "{\"numbers\":[1,2,3,4,5]}");
JsonProxy input = "{\"name\":\"value\",\"type\":\"value2\" }";
var result = Duck.Implement<IJsonProxyTestInterface>(input);
This ability has applications within unit tests, to reduce the number of mock data objects, required, and within production code to read in/translate configuration and JSON data without the need for a class implementation.
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 | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
.NET Framework | net461 is compatible. 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 | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6.1
- Shadow.Quack (>= 2.3.0)
- System.Text.Json (>= 6.0.2)
-
.NETStandard 2.1
- Shadow.Quack (>= 2.3.0)
- System.Text.Json (>= 6.0.2)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Shadow.Quack.Json:
Package | Downloads |
---|---|
Quack.Api
Implementation of generic JsonConverter and JsonConvertorFactory to allow the use of Interfaces in ASP .Net API calls |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.4.7 | 3,390 | 4/5/2022 |
1.4.6 | 447 | 3/23/2022 |
1.4.5 | 867 | 1/30/2022 |
1.4.4 | 467 | 1/20/2022 |
1.4.3 | 632 | 12/5/2021 |
1.4.2 | 575 | 9/11/2021 |
1.4.1 | 503 | 9/10/2021 |
1.4.0 | 505 | 6/18/2021 |
1.3.1 | 506 | 5/27/2021 |
1.3.0 | 482 | 5/24/2021 |
1.2.2 | 443 | 4/23/2021 |
1.2.1 | 493 | 4/17/2021 |
1.2.0 | 485 | 4/17/2021 |
1.1.0 | 433 | 4/14/2021 |
1.0.0 | 440 | 3/29/2021 |
Udated Dependencies