Newtonsoft.Json 13.0.5-beta1
Json.NET
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"
// ]
// }
Links
Showing the top 20 packages that depend on Newtonsoft.Json.
| Packages | Downloads |
|---|---|
|
Audit.NET.JsonNewtonsoftAdapter
Alternative Newtonsoft.JSON serialization for Audit.NET
|
25 |
|
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 - порядок отрисовки геометрий: геометрии с большим значением отрисовываются поверх геометрий с меньшим значением
|
3 |
|
InfluxDB.Client.Core
InfluxDB Client Core - exceptions, validations, REST client.
|
5 |
|
JsonSubTypes
Discriminated Json Subtypes Converter implementation for .NET
|
3 |
|
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
|
8 |
|
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
|
19 |
|
Microsoft.CodeAnalysis.Workspaces.MSBuild
.NET Compiler Platform ("Roslyn") support for analyzing MSBuild projects and solutions. This should be used with at least one
of the following packages to add the appropriate language support:
- Microsoft.CodeAnalysis.CSharp.Workspaces
- Microsoft.CodeAnalysis.VisualBasic.Workspaces
More details at https://aka.ms/roslyn-packages
This package was built from the source at https://github.com/dotnet/roslyn/commit/6c4a46a31302167b425d5e0a31ea83c9a9aa1d09.
|
8 |
|
Microsoft.DotNet.Scaffolding.Shared
Contains interfaces for Project Model and messaging for scaffolding.
|
8 |
|
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.
|
14 |
|
Microsoft.TestPlatform.TestHost
Testplatform host executes the test using specified adapter.
|
85 |
|
Microsoft.VisualStudio.Web.CodeGeneration
Contains the CodeGenCommand that finds the appropriate code generator and invokes it from project dependencies.
|
6 |
|
Microsoft.VisualStudio.Web.CodeGeneration.Core
Contains the core infrastructure used by ASP.NET Core Code Generators.
|
8 |
|
Microsoft.VisualStudio.Web.CodeGeneration.Design
Code Generation tool for ASP.NET Core. Contains the dotnet-aspnet-codegenerator command used for generating controllers and views.
|
37 |
|
Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore
Contains Entity Framework Core Services used by ASP.NET Core Code Generators.
|
7 |
|
Microsoft.VisualStudio.Web.CodeGeneration.Templating
Contains Razor based templating host used by ASP.NET Core Code Generators.
|
5 |
|
Microsoft.VisualStudio.Web.CodeGeneration.Utils
Contains utilities used by ASP.NET Core Code Generation packages.
|
8 |
|
Microsoft.VisualStudio.Web.CodeGenerators.Mvc
Code Generators for ASP.NET Core MVC. Contains code generators for MVC Controllers and Views.
|
13 |
|
NodaTime.Serialization.JsonNet
Provides serialization support between Noda Time and Json.NET.
|
4 |
|
NuGet.Packaging
NuGet's understanding of packages. Reading nuspec, nupkgs and package signing.
|
7 |
.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
- Microsoft.CSharp (>= 4.3.0)
- NETStandard.Library (>= 1.6.1)
- System.ComponentModel.TypeConverter (>= 4.3.0)
- System.Runtime.Serialization.Primitives (>= 4.3.0)
.NET Standard 1.3
- Microsoft.CSharp (>= 4.3.0)
- NETStandard.Library (>= 1.6.1)
- System.ComponentModel.TypeConverter (>= 4.3.0)
- System.Runtime.Serialization.Formatters (>= 4.3.0)
- System.Runtime.Serialization.Primitives (>= 4.3.0)
- System.Xml.XmlDocument (>= 4.3.0)
.NET 6.0
- No dependencies.
.NET Standard 2.0
- No dependencies.
| Version | Downloads | Last updated |
|---|---|---|
| 13.0.5-beta1 | 1 | 04/25/2026 |
| 13.0.4 | 193 | 03/30/2026 |
| 13.0.3 | 139 | 03/20/2026 |
| 13.0.2 | 1 | 04/25/2026 |
| 13.0.1 | 25 | 03/30/2026 |
| 12.0.3 | 1 | 04/25/2026 |
| 12.0.2 | 1 | 04/25/2026 |
| 12.0.1 | 7 | 04/06/2026 |
| 11.0.2 | 1 | 04/25/2026 |
| 11.0.1 | 1 | 04/25/2026 |
| 10.0.3 | 1 | 04/25/2026 |
| 10.0.2 | 1 | 04/25/2026 |
| 10.0.1 | 1 | 04/25/2026 |
| 9.0.1 | 1 | 04/24/2026 |
| 8.0.3 | 1 | 04/24/2026 |
| 8.0.2 | 1 | 04/24/2026 |
| 8.0.1 | 1 | 04/24/2026 |
| 7.0.1 | 1 | 04/24/2026 |
| 6.0.8 | 1 | 04/24/2026 |
| 6.0.7 | 1 | 04/24/2026 |
| 6.0.6 | 1 | 04/24/2026 |
| 6.0.5 | 1 | 04/24/2026 |
| 6.0.4 | 1 | 04/24/2026 |
| 6.0.3 | 1 | 04/24/2026 |
| 6.0.2 | 1 | 04/24/2026 |
| 6.0.1 | 1 | 04/24/2026 |
| 5.0.8 | 1 | 04/24/2026 |
| 5.0.7 | 1 | 04/24/2026 |
| 5.0.6 | 1 | 04/24/2026 |
| 5.0.5 | 1 | 04/24/2026 |
| 5.0.4 | 1 | 04/24/2026 |
| 5.0.3 | 1 | 04/24/2026 |
| 5.0.2 | 1 | 04/24/2026 |
| 5.0.1 | 1 | 04/24/2026 |
| 4.5.11 | 1 | 04/25/2026 |
| 4.5.10 | 1 | 04/25/2026 |
| 4.5.9 | 1 | 04/24/2026 |
| 4.5.8 | 1 | 04/24/2026 |
| 4.5.7 | 1 | 04/24/2026 |
| 4.5.6 | 1 | 04/24/2026 |
| 4.5.5 | 1 | 04/24/2026 |
| 4.5.4 | 1 | 04/24/2026 |
| 4.5.3 | 1 | 04/24/2026 |
| 4.5.2 | 1 | 04/24/2026 |
| 4.5.1 | 1 | 04/24/2026 |
| 4.0.8 | 1 | 04/24/2026 |
| 4.0.7 | 1 | 04/24/2026 |
| 4.0.6 | 1 | 04/24/2026 |
| 4.0.5 | 1 | 04/24/2026 |
| 4.0.4 | 1 | 04/24/2026 |
| 4.0.3 | 1 | 04/24/2026 |
| 4.0.2 | 1 | 04/24/2026 |
| 4.0.1 | 1 | 04/24/2026 |
| 3.5.8 | 1 | 04/24/2026 |