Microsoft.AspNetCore.Mvc.NewtonsoftJson 9.0.0-rc.2.24474.3

Prefix Reserved
This is a prerelease version of Microsoft.AspNetCore.Mvc.NewtonsoftJson.
dotnet add package Microsoft.AspNetCore.Mvc.NewtonsoftJson --version 9.0.0-rc.2.24474.3                
NuGet\Install-Package Microsoft.AspNetCore.Mvc.NewtonsoftJson -Version 9.0.0-rc.2.24474.3                
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="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="9.0.0-rc.2.24474.3" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Microsoft.AspNetCore.Mvc.NewtonsoftJson --version 9.0.0-rc.2.24474.3                
#r "nuget: Microsoft.AspNetCore.Mvc.NewtonsoftJson, 9.0.0-rc.2.24474.3"                
#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 Microsoft.AspNetCore.Mvc.NewtonsoftJson as a Cake Addin
#addin nuget:?package=Microsoft.AspNetCore.Mvc.NewtonsoftJson&version=9.0.0-rc.2.24474.3&prerelease

// Install Microsoft.AspNetCore.Mvc.NewtonsoftJson as a Cake Tool
#tool nuget:?package=Microsoft.AspNetCore.Mvc.NewtonsoftJson&version=9.0.0-rc.2.24474.3&prerelease                

About

Microsoft.AspNetCore.Mvc.NewtonsoftJson is a NuGet package designed to enable the use of JSON serialization and deserialization using Newtonsoft.Json in ASP.NET Core MVC applications. This package provides support for handling JSON input and output in ASP.NET Core MVC controllers, allowing for seamless integration with existing Newtonsoft.Json configurations and features.

Key Features

  • Integration of Newtonsoft.Json into ASP.NET Core MVC for JSON serialization and deserialization.
  • Compatible with ASP.NET Core 3.0 and newer.
  • Allows customization of JSON serialization settings.
  • Supports handling JSON requests and responses in MVC controllers.

How to Use

To start using Microsoft.AspNetCore.Mvc.NewtonsoftJson in your ASP.NET Core MVC application, follow these steps:

Installation

dotnet add package Microsoft.AspNetCore.Mvc.NewtonsoftJson

Configuration

In your Startup.cs file, configure NewtonsoftJson as the default JSON serializer for ASP.NET Core MVC:

using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.DependencyInjection;
using Newtonsoft.Json;

public void ConfigureServices(IServiceCollection services)
{
    services.AddControllersWithViews()
        .AddNewtonsoftJson(options =>
        {
            // Configure Newtonsoft.Json options here
            options.SerializerSettings.ReferenceLoopHandling = ReferenceLoopHandling.Ignore;
            options.SerializerSettings.NullValueHandling = NullValueHandling.Ignore;
        });
}

Usage

Now, you can use Newtonsoft.Json serialization and deserialization in your ASP.NET Core MVC controllers:

using Microsoft.AspNetCore.Mvc;
using Newtonsoft.Json;

public class SampleController : Controller
{
    [HttpPost]
    public IActionResult Post([FromBody] MyModel model)
    {
        // Your action logic here
    }
}

public class MyModel
{
    public string Name { get; set; }
    public int Age { get; set; }
}

For more information on configuring and using Newtonsoft.Json in ASP.NET Core MVC, refer to the official documentation.

Main Types

The main types provided by this library are:

  • NewtonsoftJsonOptions: Options for configuring Newtonsoft.Json serialization settings.
  • NewtonsoftJsonInputFormatter: Input formatter for handling JSON input using Newtonsoft.Json.
  • NewtonsoftJsonOutputFormatter: Output formatter for handling JSON output using Newtonsoft.Json.

Additional Documentation

Feedback & Contributing

Microsoft.AspNetCore.Authentication.JwtBearer is released as open-source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1.3K)

Showing the top 5 NuGet packages that depend on Microsoft.AspNetCore.Mvc.NewtonsoftJson:

Package Downloads
Swashbuckle.AspNetCore.Newtonsoft

Swagger Generator opt-in component to support Newtonsoft.Json serializer behaviors

Ocelot

Ocelot is an API gateway based on .NET stack.

Abp.AspNetCore

Abp.AspNetCore

Reo.Core.Hosting

Package Description

Omnia.Fx.NetCore.WebApp

Package Description

GitHub repositories (283)

Showing the top 5 popular GitHub repositories that depend on Microsoft.AspNetCore.Mvc.NewtonsoftJson:

Repository Stars
PowerShell/PowerShell
PowerShell for every system!
ardalis/CleanArchitecture
Clean Architecture Solution Template: A starting point for Clean Architecture with ASP.NET Core
abpframework/abp
Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
Jackett/Jackett
API Support for your favorite torrent trackers
Version Downloads Last updated
9.0.0-rc.2.24474.3 2,515 10/8/2024
9.0.0-rc.1.24452.1 7,903 9/10/2024
9.0.0-preview.7.24406.2 4,004 8/13/2024
9.0.0-preview.6.24328.4 14,376 7/9/2024
9.0.0-preview.5.24306.11 1,909 6/11/2024
9.0.0-preview.4.24267.6 2,050 5/21/2024
9.0.0-preview.3.24172.13 3,814 4/11/2024
9.0.0-preview.2.24128.4 4,248 3/12/2024
9.0.0-preview.1.24081.5 3,746 2/13/2024
8.0.10 306,259 10/8/2024
8.0.8 3,181,815 8/13/2024
8.0.7 2,888,989 7/9/2024
8.0.6 3,410,417 5/28/2024
8.0.5 1,270,178 5/14/2024
8.0.4 3,494,321 4/9/2024
8.0.3 2,883,092 3/12/2024
8.0.2 2,959,024 2/13/2024
8.0.1 4,491,555 1/9/2024
8.0.0 7,685,920 11/14/2023
8.0.0-rc.2.23480.2 53,698 10/10/2023
8.0.0-rc.1.23421.29 27,549 9/12/2023
8.0.0-preview.7.23375.9 14,827 8/8/2023
8.0.0-preview.6.23329.11 8,851 7/11/2023
8.0.0-preview.5.23302.2 6,437 6/13/2023
8.0.0-preview.4.23260.4 174,852 5/16/2023
8.0.0-preview.3.23177.8 18,441 4/11/2023
8.0.0-preview.2.23153.2 8,794 3/14/2023
8.0.0-preview.1.23112.2 14,975 2/21/2023
7.0.20 240,270 5/28/2024
7.0.19 90,735 5/14/2024
7.0.18 150,058 4/9/2024
7.0.17 191,420 3/12/2024
7.0.16 304,255 2/13/2024
7.0.15 541,932 1/9/2024
7.0.14 1,223,610 11/14/2023
7.0.13 1,512,295 10/24/2023
7.0.12 872,541 10/10/2023
7.0.11 1,399,910 9/12/2023
7.0.10 2,063,430 8/8/2023
7.0.9 1,513,107 7/11/2023
7.0.8 1,286,298 6/22/2023
7.0.7 1,102,306 6/13/2023
7.0.5 4,913,732 4/11/2023
7.0.4 1,972,148 3/14/2023
7.0.3 2,146,886 2/14/2023
7.0.2 2,995,572 1/10/2023
7.0.1 2,691,003 12/13/2022
7.0.0 10,671,848 11/7/2022
7.0.0-rc.2.22476.2 62,117 10/11/2022
7.0.0-rc.1.22427.2 9,696 9/14/2022
7.0.0-preview.7.22376.6 9,946 8/9/2022
7.0.0-preview.6.22330.3 7,558 7/12/2022
7.0.0-preview.5.22303.8 8,602 6/14/2022
7.0.0-preview.4.22251.1 8,820 5/10/2022
7.0.0-preview.3.22178.4 3,241 4/13/2022
7.0.0-preview.2.22153.2 10,328 3/14/2022
7.0.0-preview.1.22109.13 3,297 2/17/2022
6.0.35 23,953 10/8/2024
6.0.33 393,321 8/13/2024
6.0.32 341,979 7/9/2024
6.0.31 449,155 5/28/2024
6.0.30 176,954 5/14/2024
6.0.29 612,410 4/9/2024
6.0.28 647,787 3/12/2024
6.0.27 1,816,194 2/13/2024
6.0.26 1,278,816 1/9/2024
6.0.25 2,456,737 11/14/2023
6.0.24 1,382,680 10/24/2023
6.0.23 713,057 10/10/2023
6.0.22 1,383,805 9/12/2023
6.0.21 1,880,082 8/8/2023
6.0.20 1,951,707 7/11/2023
6.0.19 1,147,114 6/22/2023
6.0.18 679,053 6/13/2023
6.0.16 5,221,169 4/11/2023
6.0.15 2,522,390 3/14/2023
6.0.14 2,786,034 2/14/2023
6.0.13 4,544,204 1/10/2023
6.0.12 4,267,973 12/13/2022
6.0.11 6,105,689 11/7/2022
6.0.10 8,892,516 10/11/2022
6.0.9 6,332,365 9/13/2022
6.0.8 8,483,169 8/9/2022
6.0.7 6,857,837 7/12/2022
6.0.6 5,559,050 6/14/2022
6.0.5 10,873,290 5/10/2022
6.0.4 6,372,463 4/11/2022
6.0.3 7,592,183 3/8/2022
6.0.2 6,689,273 2/8/2022
6.0.1 14,107,933 12/14/2021
6.0.0 13,620,023 11/8/2021
6.0.0-rc.2.21480.10 69,970 10/12/2021
6.0.0-rc.1.21452.15 20,293,246 9/14/2021
6.0.0-preview.7.21378.6 55,803 8/10/2021
6.0.0-preview.6.21355.2 9,648 7/14/2021
6.0.0-preview.5.21301.17 5,850 6/15/2021
6.0.0-preview.4.21253.5 11,095 5/24/2021
6.0.0-preview.3.21201.13 8,354 4/8/2021
6.0.0-preview.2.21154.6 6,188 3/11/2021 6.0.0-preview.2.21154.6 is deprecated because it is no longer maintained.
6.0.0-preview.1.21103.6 7,585 2/12/2021 6.0.0-preview.1.21103.6 is deprecated because it is no longer maintained.
5.0.17 2,088,594 5/10/2022 5.0.17 is deprecated because it is no longer maintained.
5.0.16 290,258 4/11/2022 5.0.16 is deprecated because it is no longer maintained.
5.0.15 686,631 3/8/2022 5.0.15 is deprecated because it is no longer maintained.
5.0.14 508,642 2/8/2022 5.0.14 is deprecated because it is no longer maintained.
5.0.13 2,835,282 12/14/2021 5.0.13 is deprecated because it is no longer maintained.
5.0.12 2,191,041 11/7/2021 5.0.12 is deprecated because it is no longer maintained.
5.0.11 5,047,498 10/12/2021 5.0.11 is deprecated because it is no longer maintained.
5.0.10 6,142,317 9/14/2021 5.0.10 is deprecated because it is no longer maintained.
5.0.9 3,753,401 8/10/2021 5.0.9 is deprecated because it is no longer maintained.
5.0.8 3,532,638 7/13/2021 5.0.8 is deprecated because it is no longer maintained.
5.0.7 3,578,476 6/8/2021 5.0.7 is deprecated because it is no longer maintained.
5.0.6 2,785,565 5/11/2021 5.0.6 is deprecated because it is no longer maintained.
5.0.5 3,840,865 4/6/2021 5.0.5 is deprecated because it is no longer maintained.
5.0.4 2,575,606 3/9/2021 5.0.4 is deprecated because it is no longer maintained.
5.0.3 3,851,736 2/9/2021 5.0.3 is deprecated because it is no longer maintained.
5.0.2 2,472,204 1/12/2021 5.0.2 is deprecated because it is no longer maintained.
5.0.1 2,104,740 12/8/2020 5.0.1 is deprecated because it is no longer maintained.
5.0.0 13,382,627 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.17 30,823 10/13/2020 5.0.0-rc.2.20475.17 is deprecated because it is no longer maintained.
5.0.0-rc.1.20451.17 20,202 9/14/2020 5.0.0-rc.1.20451.17 is deprecated because it is no longer maintained.
5.0.0-preview.8.20414.8 4,530 8/25/2020 5.0.0-preview.8.20414.8 is deprecated because it is no longer maintained.
5.0.0-preview.7.20365.19 13,209 7/21/2020 5.0.0-preview.7.20365.19 is deprecated because it is no longer maintained.
5.0.0-preview.6.20312.15 6,334 6/25/2020 5.0.0-preview.6.20312.15 is deprecated because it is no longer maintained.
5.0.0-preview.5.20279.2 15,539 6/10/2020 5.0.0-preview.5.20279.2 is deprecated because it is no longer maintained.
5.0.0-preview.4.20257.10 4,719 5/18/2020 5.0.0-preview.4.20257.10 is deprecated because it is no longer maintained.
5.0.0-preview.3.20215.14 4,036 4/23/2020 5.0.0-preview.3.20215.14 is deprecated because it is no longer maintained.
5.0.0-preview.2.20167.3 2,563 4/2/2020 5.0.0-preview.2.20167.3 is deprecated because it is no longer maintained.
5.0.0-preview.1.20124.5 3,105 3/16/2020 5.0.0-preview.1.20124.5 is deprecated because it is no longer maintained.
3.1.32 1,180,400 12/13/2022
3.1.31 186,127 11/8/2022
3.1.30 285,686 10/11/2022
3.1.29 328,194 9/13/2022
3.1.28 473,461 8/9/2022
3.1.27 521,719 7/12/2022
3.1.26 388,989 6/14/2022
3.1.25 623,091 5/10/2022
3.1.24 408,236 4/11/2022
3.1.23 796,131 3/8/2022
3.1.22 2,924,025 12/14/2021
3.1.21 1,633,792 11/7/2021
3.1.20 1,167,337 10/11/2021
3.1.19 1,225,424 9/14/2021
3.1.18 1,740,870 8/10/2021
3.1.17 1,695,111 7/13/2021
3.1.16 2,201,885 6/8/2021
3.1.15 1,880,589 5/11/2021
3.1.14 2,405,555 4/6/2021
3.1.13 2,850,516 3/9/2021
3.1.12 2,674,228 2/9/2021
3.1.11 3,042,361 1/12/2021
3.1.10 6,950,886 11/9/2020
3.1.9 7,322,862 10/13/2020
3.1.8 9,113,518 9/8/2020
3.1.7 6,370,525 8/11/2020
3.1.6 6,951,583 7/14/2020
3.1.5 9,910,519 6/9/2020
3.1.4 11,988,075 5/12/2020
3.1.3 12,598,368 3/24/2020
3.1.2 8,782,903 2/18/2020
3.1.1 10,319,172 1/14/2020
3.1.0 9,844,765 12/3/2019
3.1.0-preview3.19555.2 44,318 11/13/2019 3.1.0-preview3.19555.2 is deprecated because it is no longer maintained.
3.1.0-preview2.19528.8 5,965 11/1/2019 3.1.0-preview2.19528.8 is deprecated because it is no longer maintained.
3.1.0-preview1.19508.20 12,777 10/15/2019 3.1.0-preview1.19508.20 is deprecated because it is no longer maintained.
3.0.3 563,698 2/18/2020 3.0.3 is deprecated because it is no longer maintained.
3.0.2 553,162 1/14/2020 3.0.2 is deprecated because it is no longer maintained.
3.0.0 29,761,724 9/23/2019 3.0.0 is deprecated because it is no longer maintained.
3.0.0-rc1.19457.4 37,894 9/16/2019 3.0.0-rc1.19457.4 is deprecated because it is no longer maintained.
3.0.0-preview9.19424.4 78,596 9/4/2019 3.0.0-preview9.19424.4 is deprecated because it is no longer maintained.
3.0.0-preview8.19405.7 110,661 8/13/2019 3.0.0-preview8.19405.7 is deprecated because it is no longer maintained.
3.0.0-preview7.19365.7 114,455 7/23/2019 3.0.0-preview7.19365.7 is deprecated because it is no longer maintained.
3.0.0-preview6.19307.2 274,950 6/12/2019 3.0.0-preview6.19307.2 is deprecated because it is no longer maintained.
3.0.0-preview5-19227-01 801,361 5/6/2019 3.0.0-preview5-19227-01 is deprecated because it is no longer maintained.
3.0.0-preview4-19216-03 37,445 4/18/2019 3.0.0-preview4-19216-03 is deprecated because it is no longer maintained.
3.0.0-preview3-19153-02 6,059,973 3/6/2019 3.0.0-preview3-19153-02 is deprecated because it is no longer maintained.
3.0.0-preview-19075-0444 22,479 1/29/2019 3.0.0-preview-19075-0444 is deprecated because it is no longer maintained.