Json.Net 1.0.10

There is a newer version of this package available.
See the version list below for details.
dotnet add package Json.Net --version 1.0.10
NuGet\Install-Package Json.Net -Version 1.0.10
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Json.Net" Version="1.0.10" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Json.Net --version 1.0.10
#r "nuget: Json.Net, 1.0.10"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Json.Net as a Cake Addin
#addin nuget:?package=Json.Net&version=1.0.10

// Install Json.Net as a Cake Tool
#tool nuget:?package=Json.Net&version=1.0.10

Json.Net

A minimalistic JSON handler library.

Framework : .NET Standard 2.0

Usage instructions

Define a POCO class...

class Pet
{
  public int id;
  public string name;
}

Serialization...

var petJson = JsonNet.Serialize(pet);

Deserialization...

var pet = JsonNet.Deserialize<Pet>(petJson);

You can also define and use custom type converters to control serialization/deserialization.

var dateConverter = 
  new JsonConverter<DateTime>(
    dt => dt.ToString("yyyy'-'MM'-'dd'T'HH':'mm':'ss", CultureInfo.InvariantCulture),
    s => DateTime.ParseExact(s, "yyyy'-'MM'-'dd'T'HH':'mm':'ss", CultureInfo.InvariantCulture));
  
var petJson = JsonNet.Serialize(pet, dateConverter);

Reference

Name space

using Json.Net;

Methods

string JsonNet.Serialize(object obj, params IJsonConverter[] converters)
Description

Serializes an object to its JSON text representation.

Parameters

obj : Object to be serialized

converters : Custom type converters. Default: empty


void SerializeToStream(object obj, Stream stream, params IJsonConverter[] converters)
Description

Serializes an object to a JSON text stream destination.

Parameters

obj : Object to be serialized

converters : Custom type converters. Default: empty


T JsonNet.Deserialize<T>(string json, params IJsonConverter[] converters)
Description

Deserializes an object from a JSON text.

Parameters

T : Deserialized object's type

json : JSON text

converters : Custom converters. Default: empty


T DeserializeFromStream<T>(Stream stream, params IJsonConverter[] converters)
Description

Deserializes an object from a JSON text stream source.

Parameters

T : Deserialized object's type

json : JSON text

converters : Custom converters. Default: empty


Converter interface

public interface IJsonConverter
{
  Type GetConvertingType();
  string Serializer(object obj);
  object Deserializer(string txt);
}
Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages (18)

Showing the top 5 NuGet packages that depend on Json.Net:

Package Downloads
Cryptocurrency.Blockchain

Cryptocurrency.Blockchain is a library for interacting with the Blockchain Data API provided by Blockchain.

CrunchyrollAPI

Description

Griffin.ReportWriter

Griffin Report Writer (C# Custom Library, for internal use only)

Tyle_Evmos

Package Description

Tyle.Nft

Package Description

GitHub repositories (4)

Showing the top 4 popular GitHub repositories that depend on Json.Net:

Repository Stars
VRCWizard/TTS-Voice-Wizard
Speech to Text to Speech. Song now playing. Sends text as OSC messages to VRChat to display on avatar. (STTTS) (Speech to TTS) (VRC STT System) (VTuber TTS)
AzureAD/SCIMReferenceCode
Reference code to build a SCIM endpoint to automate provisioning
stuff-by-3-random-dudes/UWUVCI-AIO-WPF
R2NorthstarTools/VTOL
A Manager and Installer For the Titanfall 2 +Northstar launcher.
Version Downloads Last updated
1.0.33 1,394,482 5/16/2021
1.0.32 996 5/16/2021
1.0.31 20,731 4/24/2021
1.0.30 803 4/23/2021
1.0.29 556 4/23/2021
1.0.28 521 4/23/2021
1.0.27 474 4/23/2021
1.0.26 485 4/23/2021
1.0.25 87,308 2/20/2021
1.0.24 539 2/20/2021
1.0.23 394,188 6/20/2020
1.0.22 81,446 5/5/2020
1.0.21 13,250 4/25/2020
1.0.18 709,434 11/19/2019
1.0.17 1,076 11/19/2019
1.0.16 356,880 1/5/2019
1.0.15 1,712 1/5/2019
1.0.14 1,155 1/5/2019
1.0.13 4,253 12/17/2018
1.0.12 1,132 12/17/2018
1.0.11 1,109 12/16/2018
1.0.10 2,137 12/15/2018
1.0.9 2,983 12/13/2018
1.0.8 1,061 12/13/2018
1.0.7 974 12/13/2018
1.0.6 1,259 12/12/2018
1.0.5 1,115 12/12/2018
1.0.4 950 12/12/2018
1.0.3 1,104 12/12/2018
1.0.1 1,295 12/12/2018
1.0.0 22,285 12/12/2018

Performance optimizations.