Newtonsoft.Json 13.0.5-beta1

Logo Json.NET

NuGet version (Newtonsoft.Json) Build status

Json.NET is a popular high-performance JSON framework for .NET

Serialize JSON

Product product = new Product();
product.Name = "Apple";
product.Expiry = new DateTime(2008, 12, 28);
product.Sizes = new string[] { "Small" };

string json = JsonConvert.SerializeObject(product);
// {
//   "Name": "Apple",
//   "Expiry": "2008-12-28T00:00:00",
//   "Sizes": [
//     "Small"
//   ]
// }

Deserialize JSON

string json = @"{
  'Name': 'Bad Boys',
  'ReleaseDate': '1995-4-7T00:00:00',
  'Genres': [
    'Action',
    'Comedy'
  ]
}";

Movie m = JsonConvert.DeserializeObject<Movie>(json);

string name = m.Name;
// Bad Boys

LINQ to JSON

JArray array = new JArray();
array.Add("Manual text");
array.Add(new DateTime(2000, 5, 23));

JObject o = new JObject();
o["MyArray"] = array;

string json = o.ToString();
// {
//   "MyArray": [
//     "Manual text",
//     "2000-05-23T00:00:00"
//   ]
// }

Showing the top 20 packages that depend on Newtonsoft.Json.

Packages Downloads
Apache.Avro
Avro provides: Rich data structures. A compact, fast, binary data format. A container file, to store persistent data. Remote procedure call (RPC). Simple integration with dynamic languages. Code generation is not required to read or write data files nor to use or implement RPC protocols. Code generation as an optional optimization, only worth implementing for statically typed languages.
7
Audit.NET.JsonNewtonsoftAdapter
Alternative Newtonsoft.JSON serialization for Audit.NET
16
Audit.NET.JsonNewtonsoftAdapter
Alternative Newtonsoft.JSON serialization for Audit.NET
32
Denexy.ServerRender.Client
Клиент Server Render Версия 1.4.1: - в ServerRenderClient добавлена обработка исключений Версия 1.4.0: - в TrackParameters добавлен параметр IconSize - размер значков Версия 1.3.0: - в TrackParameters добавлен параметр Contour - Обводить трек по контуру Версия 1.2.1: - в GeofenceParameters добавлен параметр Icon с полем Image - иконка для отрисовки на карте Версия 1.1.0: - в GeofenceParameters добавлен параметр Order - порядок отрисовки геометрий: геометрии с большим значением отрисовываются поверх геометрий с меньшим значением
5
InfluxDB.Client.Core
InfluxDB Client Core - exceptions, validations, REST client.
8
JsonSubTypes
Discriminated Json Subtypes Converter implementation for .NET
7
Microsoft.AspNetCore.JsonPatch
ASP.NET Core support for JSON PATCH. This package was built from the source code at https://github.com/dotnet/dotnet/tree/94ea82652cdd4e0f8046b5bd5becbd11461482ca
4
Microsoft.AspNetCore.JsonPatch
ASP.NET Core support for JSON PATCH. This package was built from the source code at https://github.com/dotnet/dotnet/tree/a612c2a1056fe3265387ae3ff7c94eba1505caf9
10
Microsoft.AspNetCore.Mvc.NewtonsoftJson
ASP.NET Core MVC features that use Newtonsoft.Json. Includes input and output formatters for JSON and JSON PATCH. This package was built from the source code at https://github.com/dotnet/dotnet/tree/94ea82652cdd4e0f8046b5bd5becbd11461482ca
7
Microsoft.AspNetCore.Mvc.NewtonsoftJson
ASP.NET Core MVC features that use Newtonsoft.Json. Includes input and output formatters for JSON and JSON PATCH. This package was built from the source code at https://github.com/dotnet/dotnet/tree/a612c2a1056fe3265387ae3ff7c94eba1505caf9
22
Microsoft.DotNet.Scaffolding.Shared
Contains interfaces for Project Model and messaging for scaffolding.
6
Microsoft.EntityFrameworkCore.Design
Shared design-time components for Entity Framework Core tools.
7
Microsoft.EntityFrameworkCore.Design
Shared design-time components for Entity Framework Core tools.
8
Microsoft.TestPlatform.TestHost
Testplatform host executes the test using specified adapter.
7
Microsoft.TestPlatform.TestHost
Testplatform host executes the test using specified adapter.
14
Microsoft.TestPlatform.TestHost
Testplatform host executes the test using specified adapter.
105
Microsoft.VisualStudio.Web.CodeGeneration.Core
Contains the core infrastructure used by ASP.NET Core Code Generators.
4
Microsoft.VisualStudio.Web.CodeGeneration.Design
Code Generation tool for ASP.NET Core. Contains the dotnet-aspnet-codegenerator command used for generating controllers and views.
15
NodaTime.Serialization.JsonNet
Provides serialization support between Noda Time and Json.NET.
8
NuGet.Protocol.Core.v3
NuGet Protocol for 3.1.0 servers
4

.NET Framework 2.0

  • No dependencies.

.NET Framework 3.5

  • No dependencies.

.NET Framework 4.0

  • No dependencies.

.NET Framework 4.5

  • No dependencies.

.NET Standard 1.0

.NET Standard 1.3

.NET 6.0

  • No dependencies.

.NET Standard 2.0

  • No dependencies.

Version Downloads Last updated
13.0.5-beta1 2 04/25/2026
13.0.4 122 05/16/2026
13.0.3 266 03/20/2026
13.0.2 2 04/25/2026
13.0.1 44 03/30/2026
12.0.3 2 04/25/2026
12.0.2 2 04/25/2026
12.0.1 12 04/06/2026
11.0.2 3 04/25/2026
11.0.1 2 04/25/2026
10.0.3 2 04/25/2026
10.0.2 2 04/25/2026
10.0.1 2 04/25/2026
9.0.1 3 04/24/2026
8.0.3 3 04/24/2026
8.0.2 3 04/24/2026
8.0.1 3 04/24/2026
7.0.1 3 04/24/2026
6.0.8 3 04/24/2026
6.0.7 3 04/24/2026
6.0.6 3 04/24/2026
6.0.5 3 04/24/2026
6.0.4 3 04/24/2026
6.0.3 3 04/24/2026
6.0.2 3 04/24/2026
6.0.1 3 04/24/2026
5.0.8 3 04/24/2026
5.0.7 3 04/24/2026
5.0.6 3 04/24/2026
5.0.5 3 04/24/2026
5.0.4 3 04/24/2026
5.0.3 3 04/24/2026
5.0.2 3 04/24/2026
5.0.1 3 04/24/2026
4.5.11 2 04/25/2026
4.5.10 2 04/25/2026
4.5.9 3 04/24/2026
4.5.8 3 04/24/2026
4.5.7 3 04/24/2026
4.5.6 3 04/24/2026
4.5.5 3 04/24/2026
4.5.4 3 04/24/2026
4.5.3 3 04/24/2026
4.5.2 3 04/24/2026
4.5.1 3 04/24/2026
4.0.8 3 04/24/2026
4.0.7 3 04/24/2026
4.0.6 3 04/24/2026
4.0.5 3 04/24/2026
4.0.4 3 04/24/2026
4.0.3 3 04/24/2026
4.0.2 3 04/24/2026
4.0.1 3 04/24/2026
3.5.8 3 04/24/2026