Newtonsoft.Json 13.0.2-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 |
---|---|
Consul
Package Description
|
10,319 |
HotChocolate.Utilities
Contains internal helper classes and utilities used by the Hot Chocolate GraphQL type system and the GraphQL query execution engine.
|
4,856 |
HotChocolate.Utilities
Contains internal helper classes and utilities used by the Hot Chocolate GraphQL type system and the GraphQL query execution engine.
|
9,283 |
IdentityModel
OpenID Connect & OAuth 2.0 client library
|
10,343 |
IdentityServer4
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
|
10,317 |
Jaeger
Jaeger .NET Tracing
|
10,322 |
Microsoft.AspNetCore.JsonPatch
ASP.NET Core support for JSON PATCH.
This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/844a82e37cae48af2ab2ee4f39b41283e6bb4f0e
|
10,330 |
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/aspnet/AspNetCore/tree/844a82e37cae48af2ab2ee4f39b41283e6bb4f0e
|
10,317 |
Microsoft.AspNet.WebApi.Client
This package adds support for formatting and content negotiation to System.Net.Http. It includes support for JSON, XML, and form URL encoded data.
|
10,326 |
Microsoft.Extensions.DependencyModel
Abstractions for reading `.deps` files.
|
11,094 |
Microsoft.Extensions.DependencyModel
Abstractions for reading `.deps` files.
|
11,332 |
Microsoft.Extensions.DependencyModel
Abstractions for reading `.deps` files.
|
15,010 |
Microsoft.IdentityModel.JsonWebTokens
Includes types that provide support for creating, serializing and validating JSON Web Tokens.
|
10,336 |
Microsoft.IdentityModel.Protocols.OpenIdConnect
Includes types that provide support for OpenIdConnect protocol.
|
10,361 |
Microsoft.IdentityModel.Tokens
Includes types that provide support for SecurityTokens, Cryptographic operations: Signing, Verifying Signatures, Encryption.
|
10,347 |
Microsoft.NET.Test.Sdk
The MSbuild targets and properties for building .NET test projects.
|
2,739 |
Newtonsoft.Json.Bson
Json.NET BSON adds support for reading and writing BSON
|
10,332 |
Newtonsoft.Json.Bson
Json.NET BSON adds support for reading and writing BSON
|
10,342 |
Refit
The automatic type-safe REST library for Xamarin and .NET
|
10,323 |
System.IdentityModel.Tokens.Jwt
Includes types that provide support for creating, serializing and validating JSON Web Tokens.
|
10,384 |
.NET Framework 2.0
- No dependencies.
.NET Standard 2.0
- No dependencies.
.NET 6.0
- No dependencies.
.NET Standard 1.3
- System.Xml.XmlDocument (>= 4.3.0)
- System.Runtime.Serialization.Formatters (>= 4.3.0)
- System.ComponentModel.TypeConverter (>= 4.3.0)
- NETStandard.Library (>= 1.6.1)
- Microsoft.CSharp (>= 4.3.0)
- System.Runtime.Serialization.Primitives (>= 4.3.0)
.NET Standard 1.0
- System.ComponentModel.TypeConverter (>= 4.3.0)
- NETStandard.Library (>= 1.6.1)
- Microsoft.CSharp (>= 4.3.0)
- System.Runtime.Serialization.Primitives (>= 4.3.0)
.NET Framework 4.5
- No dependencies.
.NET Framework 4.0
- No dependencies.
.NET Framework 3.5
- No dependencies.
Version | Downloads | Last updated |
---|---|---|
13.0.3 | 58 | 04/02/2023 |
13.0.3-beta1 | 46 | 04/02/2023 |
13.0.2 | 38 | 12/08/2022 |
13.0.2-beta2 | 35 | 09/24/2022 |
13.0.2-beta1 | 50 | 06/27/2022 |
13.0.1 | 10,225 | 06/27/2022 |
12.0.3 | 22,431 | 06/27/2022 |
12.0.2 | 11,028 | 06/27/2022 |
12.0.1 | 34 | 08/20/2022 |
11.0.2 | 281 | 08/20/2022 |
11.0.1 | 53 | 08/13/2022 |
10.0.3 | 43 | 08/20/2022 |
10.0.2 | 10,364 | 06/27/2022 |
10.0.1 | 10,347 | 06/27/2022 |
9.0.1 | 16,071 | 06/27/2022 |
8.0.3 | 42 | 08/13/2022 |
8.0.2 | 49 | 08/13/2022 |
8.0.1 | 43 | 08/20/2022 |
7.0.1 | 36 | 08/19/2022 |
6.0.8 | 38 | 08/13/2022 |
6.0.7 | 44 | 08/13/2022 |
6.0.6 | 53 | 08/13/2022 |
6.0.5 | 35 | 08/13/2022 |
6.0.4 | 32 | 08/13/2022 |
6.0.3 | 55 | 08/13/2022 |
6.0.2 | 44 | 08/19/2022 |
6.0.1 | 33 | 08/13/2022 |
5.0.8 | 41 | 08/13/2022 |
5.0.7 | 48 | 08/13/2022 |
5.0.6 | 64 | 08/21/2022 |
5.0.5 | 37 | 08/18/2022 |
5.0.4 | 44 | 08/13/2022 |
5.0.3 | 32 | 08/13/2022 |
5.0.2 | 37 | 08/13/2022 |
5.0.1 | 50 | 08/13/2022 |
4.5.11 | 25 | 09/02/2022 |
4.5.10 | 45 | 08/13/2022 |
4.5.9 | 28 | 08/19/2022 |
4.5.8 | 48 | 08/21/2022 |
4.5.7 | 34 | 08/19/2022 |
4.5.6 | 53 | 08/19/2022 |
4.5.5 | 68 | 08/19/2022 |
4.5.4 | 39 | 08/19/2022 |
4.5.3 | 79 | 08/19/2022 |
4.5.2 | 46 | 07/25/2022 |
4.5.1 | 43 | 08/22/2022 |
4.0.8 | 38 | 08/13/2022 |
4.0.7 | 35 | 08/13/2022 |
4.0.6 | 50 | 08/13/2022 |
4.0.5 | 38 | 08/13/2022 |
4.0.4 | 28 | 08/13/2022 |
4.0.3 | 39 | 08/19/2022 |
4.0.2 | 28 | 08/19/2022 |
4.0.1 | 62 | 08/13/2022 |
3.5.8 | 38 | 08/19/2022 |