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 |
|---|---|
|
Newtonsoft.Json.Bson
Json.NET BSON adds support for reading and writing BSON
|
1,092 |
|
Microsoft.TestPlatform.TestHost
Testplatform host executes the test using specified adapter.
|
756 |
|
Microsoft.TestPlatform.TestHost
Testplatform host executes the test using specified adapter.
|
755 |
|
Microsoft.TestPlatform.TestHost
Testplatform host executes the test using specified adapter.
|
754 |
|
Microsoft.TestPlatform.TestHost
Testplatform host executes the test using specified adapter.
|
753 |
|
Microsoft.TestPlatform.TestHost
Testplatform host executes the test using specified adapter.
|
752 |
|
Microsoft.TestPlatform.TestHost
Testplatform host executes the test using specified adapter.
|
751 |
|
CookieCrumble
Package Description
|
524 |
|
Selenium.WebDriver
Selenium is a set of different software tools each with a different approach to supporting browser automation. These tools are highly flexible, allowing many options for locating and manipulating elements within a browser, and one of its key features is the support for automating multiple browser platforms. This package contains the .NET bindings for the newer, more concise and object-based Selenium WebDriver API, which uses native OS-level events to manipulate the browser, bypassing the JavaScript sandbox, and does not require the Selenium Server to automate the browser.
|
49 |
|
Microsoft.TestPlatform.TestHost
Testplatform host executes the test using specified adapter.
|
48 |
|
Selenium.WebDriver
Selenium is a set of different software tools each with a different approach
to supporting browser automation. These tools are highly flexible, allowing
many options for locating and manipulating elements within a browser, and one
of its key features is the support for automating multiple browser platforms.
This package contains the .NET bindings for the concise and object-based
Selenium WebDriver API, which uses native OS-level events to manipulate the
browser, bypassing the JavaScript sandbox, and does not require the Selenium
Server to automate the browser.
|
44 |
|
NEST
Strongly typed interface to Elasticsearch. Fluent and classic object initializer mappings of requests and responses. Uses and exposes Elasticsearch.Net
|
40 |
|
Selenium.WebDriver
Selenium is a set of different software tools each with a different approach
to supporting browser automation. These tools are highly flexible, allowing
many options for locating and manipulating elements within a browser, and one
of its key features is the support for automating multiple browser platforms.
This package contains the .NET bindings for the concise and object-based
Selenium WebDriver API, which uses native OS-level events to manipulate the
browser, bypassing the JavaScript sandbox, and does not require the Selenium
Server to automate the browser.
|
37 |
|
Selenium.WebDriver
Selenium is a set of different software tools each with a different approach
to supporting browser automation. These tools are highly flexible, allowing
many options for locating and manipulating elements within a browser, and one
of its key features is the support for automating multiple browser platforms.
This package contains the .NET bindings for the concise and object-based
Selenium WebDriver API, which uses native OS-level events to manipulate the
browser, bypassing the JavaScript sandbox, and does not require the Selenium
Server to automate the browser.
|
36 |
|
Selenium.WebDriver
Selenium is a set of different software tools each with a different approach to supporting browser automation. These tools are highly flexible, allowing many options for locating and manipulating elements within a browser, and one of its key features is the support for automating multiple browser platforms. This package contains the .NET bindings for the newer, more concise and object-based Selenium WebDriver API, which uses native OS-level events to manipulate the browser, bypassing the JavaScript sandbox, and does not require the Selenium Server to automate the browser.
|
36 |
|
Selenium.WebDriver
Selenium is a set of different software tools each with a different approach to supporting browser automation. These tools are highly flexible, allowing many options for locating and manipulating elements within a browser, and one of its key features is the support for automating multiple browser platforms. This package contains the .NET bindings for the newer, more concise and object-based Selenium WebDriver API, which uses native OS-level events to manipulate the browser, bypassing the JavaScript sandbox, and does not require the Selenium Server to automate the browser.
|
35 |
|
Selenium.WebDriver
Selenium is a set of different software tools each with a different approach
to supporting browser automation. These tools are highly flexible, allowing
many options for locating and manipulating elements within a browser, and one
of its key features is the support for automating multiple browser platforms.
This package contains the .NET bindings for the concise and object-based
Selenium WebDriver API, which uses native OS-level events to manipulate the
browser, bypassing the JavaScript sandbox, and does not require the Selenium
Server to automate the browser.
|
33 |
|
Aspose.Words
Aspose.Words for .NET is a cross-platform document processing library that allows developers to work with a variety of Microsoft Word, OpenOffice, Web, PDF, and image file formats. .NET developers can easily create, open, read, render, edit, convert, merge, split, compare documents. Almost all mainstream document formats are supported, including DOCX, DOC, RTF, ODT, PDF, Markdown, HTML, XML, XAML, MOBI, PNG, JPG. We also provide powerful features to generate reports from document templates and data sources.
|
32 |
.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 | 19 | 12/30/2025 |
| 13.0.4 | 14 | 12/10/2025 |
| 13.0.4-beta1 | 22 | 12/19/2025 |
| 13.0.3 | 877 | 12/10/2025 |
| 13.0.3-beta1 | 11 | 12/20/2025 |
| 13.0.2 | 511 | 12/14/2025 |
| 13.0.2-beta3 | 7 | 01/09/2026 |
| 13.0.2-beta2 | 11 | 12/10/2025 |
| 13.0.2-beta1 | 7 | 12/13/2025 |
| 13.0.1 | 1,098 | 12/10/2025 |
| 12.0.3 | 11 | 12/11/2025 |
| 12.0.2 | 10 | 12/11/2025 |
| 12.0.1 | 7 | 12/14/2025 |
| 11.0.2 | 17 | 12/09/2025 |
| 11.0.1 | 9 | 12/14/2025 |
| 10.0.3 | 12 | 12/14/2025 |
| 10.0.2 | 9 | 12/13/2025 |
| 10.0.1 | 10 | 12/20/2025 |
| 9.0.1 | 18 | 12/14/2025 |
| 8.0.3 | 15 | 12/12/2025 |
| 8.0.2 | 9 | 12/16/2025 |
| 8.0.1 | 14 | 12/13/2025 |
| 7.0.1 | 10 | 12/11/2025 |
| 6.0.8 | 14 | 12/11/2025 |
| 6.0.7 | 13 | 12/15/2025 |
| 6.0.6 | 8 | 12/20/2025 |
| 6.0.5 | 12 | 12/10/2025 |
| 6.0.4 | 10 | 12/20/2025 |
| 6.0.3 | 10 | 12/26/2025 |
| 6.0.2 | 9 | 12/10/2025 |
| 6.0.1 | 10 | 12/19/2025 |
| 5.0.8 | 14 | 12/11/2025 |
| 5.0.7 | 12 | 12/15/2025 |
| 5.0.6 | 12 | 12/20/2025 |
| 5.0.5 | 10 | 12/18/2025 |
| 5.0.4 | 10 | 12/12/2025 |
| 5.0.3 | 14 | 12/10/2025 |
| 5.0.2 | 14 | 12/14/2025 |
| 5.0.1 | 11 | 12/11/2025 |
| 4.5.11 | 8 | 12/19/2025 |
| 4.5.10 | 9 | 12/11/2025 |
| 4.5.9 | 10 | 12/10/2025 |
| 4.5.8 | 11 | 12/14/2025 |
| 4.5.7 | 10 | 12/13/2025 |
| 4.5.6 | 13 | 12/10/2025 |
| 4.5.5 | 10 | 12/19/2025 |
| 4.5.4 | 13 | 12/11/2025 |
| 4.5.3 | 10 | 12/20/2025 |
| 4.5.2 | 11 | 12/13/2025 |
| 4.5.1 | 16 | 12/11/2025 |
| 4.0.8 | 9 | 12/12/2025 |
| 4.0.7 | 7 | 12/20/2025 |
| 4.0.6 | 9 | 12/20/2025 |
| 4.0.5 | 14 | 12/11/2025 |
| 4.0.4 | 11 | 12/10/2025 |
| 4.0.3 | 8 | 12/20/2025 |
| 4.0.2 | 13 | 12/10/2025 |
| 4.0.1 | 9 | 12/15/2025 |
| 3.5.8 | 8 | 12/11/2025 |