Skip to main content
JsonObjectSerializer package icon

JsonObjectSerializer

Json Serializer for .NET projects. Support : * Uwp * Wpf, Windows Forms, Asp.Net * Asp.Net Core, Xamarin (.Net Standard 2.0) * etc. JsonObjectSerializer with Static methods * Stringify: Object => Json * StringifyAndBeautify: Stringify + Format Json * Parse: Json => Object * ToXml * ToXmlAndBeautify * FromXml Services: * JsonObjectSerializerService (IJsonObjectSerializerService) * Beautifier (IBeautifier): used to Format / Indent Json * AssemblyInfoService (IAssemblyInfoService): used to resolve Object values and properties Json Values (IJsonElementValue) (named JsonElement... to avoid conflicts with Windows.Data.Json): * String (JsonElementString) => Value string, used for Guid and DateTime * Number (JsonElementNumber) => Value Number (int, double, Int64, etc.) or for Enum * Bool (JsonElementBool) => Value true | false * Nullable (JsonElementNullable) => value null or value (10 for example for a nullable "int?") * Object (JsonElementObject) => values: dictionary of key (Json property name used for Json) and Json Value (IJsonElementValue) * Array (JsonElementArray) => Values: List of Json Values * JsonElementValue is helper to allow to create easilly Json Values Converters: Json => Object: * JsonToJsonValue: allow to convert Json string to Json Value * JsonValueToObject: allow to convert Json Value to Object (with Reflection) * JsonToObject (used by JsonObjectSerializer) : use JsonToJsonValue and JsonValueToObject to convert Json to Object Object => Json: * ObjectToJsonValue: allow to convert Object to Json Value * JsonValueToJson: : allow to convert Json Value to Json * ObjectToJson (used by JsonObjectSerializer) : use ObjectToJsonValue and JsonValueToJson to convert Object to Json Mapping * LowerCase Strategy for a Type (User for example) or for all types * Or Mapping for each property of a Type

Total Downloads
129.5K
129,477
Published
Feb 4, 2018
Latest stable version

Install

.NET CLI
dotnet add package JsonObjectSerializer --version 0.3.9
Package Manager Console
Install-Package JsonObjectSerializer -Version 0.3.9
PackageReference
<PackageReference Include="JsonObjectSerializer" Version="0.3.9" />

Frameworks

No framework metadata available.

Dependencies

No declared dependencies.

Adoption guide

Assess this package against its supported frameworks, license, maintenance signals and dependency graph before making it a project standard.

No SPDX license expression is published. Review the license text and your organisation's policy before redistribution.

No target framework metadata is available. Confirm compatibility in a representative project before standardising on this package.

How to read this guidance

Sources: published NuGet v3 registry metadata and explicit NuBrowse editorial guides. Refresh: package metadata is refreshed from NuGet when the page loads. Limit: this is not a security, legal or compatibility guarantee; validate the selected version in your project.

Useful next steps

Move from package metadata to a concrete selection or review workflow.