Microsoft.AspNetCore.Mvc.NewtonsoftJson 10.0.0

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.

Showing the top 20 packages that depend on Microsoft.AspNetCore.Mvc.NewtonsoftJson.

Packages Downloads
NSwag.Commands
NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript
77
NSwag.Commands
NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript
78
NSwag.Commands
NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript
79
NSwag.Commands
NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript
80
NSwag.Commands
NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript
83
NSwag.Commands
NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript
86
NSwag.Commands
NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript
87
NSwag.Commands
NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript
90
NSwag.Commands
NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript
92
NSwag.Generation.AspNetCore
NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript
77
NSwag.Generation.AspNetCore
NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript
92
NSwag.Generation.AspNetCore
NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript
94
Swashbuckle.AspNetCore.SwaggerGen
Swagger Generator for API's built on ASP.NET Core
84
Swashbuckle.AspNetCore.SwaggerGen
Swagger Generator for API's built on ASP.NET Core
85
Swashbuckle.AspNetCore.SwaggerGen
Swagger Generator for API's built on ASP.NET Core
88
Swashbuckle.AspNetCore.SwaggerGen
Swagger Generator for API's built on ASP.NET Core
100

Version Downloads Last updated
10.0.0 10 11/11/2025
10.0.0-rc.2.25502.107 31 10/14/2025
10.0.0-rc.1.25451.107 39 09/09/2025
10.0.0-preview.7.25380.108 43 08/12/2025
10.0.0-preview.6.25358.103 38 07/15/2025
10.0.0-preview.5.25277.114 42 06/07/2025
10.0.0-preview.4.25258.110 56 05/13/2025
10.0.0-preview.3.25172.1 62 04/11/2025
10.0.0-preview.2.25164.1 68 04/02/2025
10.0.0-preview.1.25120.3 54 04/02/2025
9.0.11 10 11/11/2025
9.0.10 31 10/14/2025
9.0.9 41 09/09/2025
9.0.8 228 08/05/2025
9.0.7 86 07/08/2025
9.0.6 58 06/12/2025
9.0.5 62 05/14/2025
9.0.4 64 04/11/2025
9.0.3 225 03/15/2025
9.0.2 190 02/14/2025
9.0.1 63 02/07/2025
9.0.0 68 11/14/2024
9.0.0-rc.2.24474.3 66 10/16/2024
9.0.0-rc.1.24452.1 58 09/19/2024
9.0.0-preview.7.24406.2 74 08/19/2024
9.0.0-preview.6.24328.4 84 07/19/2024
9.0.0-preview.5.24306.11 93 07/20/2024
9.0.0-preview.4.24267.6 98 07/20/2024
9.0.0-preview.3.24172.13 94 07/20/2024
9.0.0-preview.2.24128.4 88 07/20/2024
9.0.0-preview.1.24081.5 97 07/20/2024
8.0.22 16 11/11/2025
8.0.21 24 10/14/2025
8.0.20 28 09/09/2025
8.0.19 47 08/05/2025
8.0.18 52 07/08/2025
8.0.17 44 06/10/2025
8.0.16 51 05/14/2025
8.0.15 56 04/10/2025
8.0.14 61 03/30/2025
8.0.13 71 03/30/2025
8.0.12 67 03/30/2025
8.0.11 63 11/14/2024
8.0.10 312 10/15/2024
8.0.8 260 08/19/2024
8.0.7 123 07/20/2024
8.0.6 131 06/27/2024
8.0.5 92 07/20/2024
8.0.4 99 07/20/2024
8.0.3 103 07/20/2024
8.0.2 168 02/15/2024
8.0.1 176 02/04/2024
8.0.0 80 07/20/2024
8.0.0-rc.2.23480.2 99 07/20/2024
8.0.0-rc.1.23421.29 85 07/20/2024
8.0.0-preview.7.23375.9 89 07/20/2024
8.0.0-preview.6.23329.11 101 07/20/2024
8.0.0-preview.5.23302.2 89 07/20/2024
8.0.0-preview.4.23260.4 83 07/20/2024
8.0.0-preview.3.23177.8 92 07/20/2024
8.0.0-preview.2.23153.2 80 07/20/2024
8.0.0-preview.1.23112.2 97 07/20/2024
7.0.20 96 07/20/2024
7.0.19 89 07/20/2024
7.0.18 85 07/20/2024
7.0.17 94 07/20/2024
7.0.16 92 07/20/2024
7.0.15 88 07/20/2024
7.0.14 92 07/20/2024
7.0.13 103 07/20/2024
7.0.12 91 07/20/2024
7.0.11 94 07/20/2024
7.0.10 106 07/20/2024
7.0.9 86 07/20/2024
7.0.8 97 07/20/2024
7.0.7 97 07/20/2024
7.0.5 81 07/20/2024
7.0.4 108 07/20/2024
7.0.3 153 02/04/2024
7.0.2 94 07/20/2024
7.0.1 96 07/20/2024
7.0.0 96 02/04/2024
7.0.0-rc.2.22476.2 94 07/20/2024
7.0.0-rc.1.22427.2 81 07/20/2024
7.0.0-preview.7.22376.6 78 07/20/2024
7.0.0-preview.6.22330.3 89 07/20/2024
7.0.0-preview.5.22303.8 82 07/20/2024
7.0.0-preview.4.22251.1 100 07/20/2024
7.0.0-preview.3.22178.4 90 07/20/2024
7.0.0-preview.2.22153.2 87 07/20/2024
7.0.0-preview.1.22109.13 92 07/20/2024
6.0.36 68 11/14/2024
6.0.35 66 10/19/2024
6.0.33 74 08/19/2024
6.0.32 83 07/20/2024
6.0.31 98 07/20/2024
6.0.30 97 07/20/2024
6.0.29 87 07/20/2024
6.0.28 98 07/20/2024
6.0.27 93 07/20/2024
6.0.26 103 07/20/2024
6.0.25 89 07/20/2024
6.0.24 98 07/20/2024
6.0.23 91 07/20/2024
6.0.22 90 07/20/2024
6.0.21 86 07/20/2024
6.0.20 88 07/20/2024
6.0.19 93 07/20/2024
6.0.18 92 07/20/2024
6.0.16 97 07/20/2024
6.0.15 95 07/20/2024
6.0.14 89 07/20/2024
6.0.13 88 07/20/2024
6.0.12 85 07/20/2024
6.0.11 90 07/20/2024
6.0.10 96 07/20/2024
6.0.9 95 07/20/2024
6.0.8 86 07/20/2024
6.0.7 92 07/20/2024
6.0.6 86 07/20/2024
6.0.5 86 07/20/2024
6.0.4 94 07/19/2024
6.0.3 114 02/05/2024
6.0.2 89 07/19/2024
6.0.1 88 07/19/2024
6.0.0 80 07/19/2024
6.0.0-rc.2.21480.10 94 07/19/2024
6.0.0-rc.1.21452.15 100 07/19/2024
6.0.0-preview.7.21378.6 86 07/19/2024
6.0.0-preview.6.21355.2 87 07/19/2024
6.0.0-preview.5.21301.17 101 07/19/2024
6.0.0-preview.4.21253.5 86 07/19/2024
6.0.0-preview.3.21201.13 95 07/19/2024
6.0.0-preview.2.21154.6 81 07/19/2024
6.0.0-preview.1.21103.6 101 07/19/2024
5.0.17 94 07/19/2024
5.0.16 99 07/19/2024
5.0.15 100 07/19/2024
5.0.14 86 07/19/2024
5.0.13 87 07/19/2024
5.0.12 91 07/19/2024
5.0.11 94 07/19/2024
5.0.10 105 07/19/2024
5.0.9 92 07/19/2024
5.0.8 89 07/19/2024
5.0.7 86 07/19/2024
5.0.6 97 07/19/2024
5.0.5 93 07/19/2024
5.0.4 94 07/19/2024
5.0.3 89 07/19/2024
5.0.2 99 07/19/2024
5.0.1 89 07/19/2024
5.0.0 104 07/19/2024
5.0.0-rc.2.20475.17 99 07/19/2024
5.0.0-rc.1.20451.17 81 07/19/2024
5.0.0-preview.8.20414.8 92 07/19/2024
5.0.0-preview.7.20365.19 84 07/19/2024
5.0.0-preview.6.20312.15 96 07/19/2024
5.0.0-preview.5.20279.2 90 07/19/2024
5.0.0-preview.4.20257.10 83 07/19/2024
5.0.0-preview.3.20215.14 85 07/19/2024
5.0.0-preview.2.20167.3 96 07/19/2024
5.0.0-preview.1.20124.5 86 07/19/2024
3.1.32 90 07/19/2024
3.1.31 94 07/19/2024
3.1.30 89 07/19/2024
3.1.29 92 07/19/2024
3.1.28 96 07/19/2024
3.1.27 96 07/19/2024
3.1.26 103 07/19/2024
3.1.25 100 07/19/2024
3.1.24 94 07/19/2024
3.1.23 102 07/19/2024
3.1.22 103 07/19/2024
3.1.21 93 07/19/2024
3.1.20 92 07/19/2024
3.1.19 104 07/19/2024
3.1.18 97 07/19/2024
3.1.17 101 07/19/2024
3.1.16 97 07/19/2024
3.1.15 87 07/19/2024
3.1.14 81 07/19/2024
3.1.13 89 07/19/2024
3.1.12 94 07/19/2024
3.1.11 102 07/19/2024
3.1.10 98 07/19/2024
3.1.9 93 07/19/2024
3.1.8 94 07/19/2024
3.1.7 108 07/19/2024
3.1.6 82 07/19/2024
3.1.5 82 07/19/2024
3.1.4 99 07/19/2024
3.1.3 92 07/19/2024
3.1.2 86 07/19/2024
3.1.1 93 07/19/2024
3.1.0 96 07/19/2024
3.1.0-preview3.19555.2 96 07/19/2024
3.1.0-preview2.19528.8 90 07/19/2024
3.1.0-preview1.19508.20 81 07/19/2024
3.0.3 87 07/19/2024
3.0.2 99 07/19/2024
3.0.0 91 07/19/2024
3.0.0-rc1.19457.4 94 07/19/2024
3.0.0-preview9.19424.4 90 07/19/2024
3.0.0-preview8.19405.7 93 07/19/2024
3.0.0-preview7.19365.7 98 07/19/2024
3.0.0-preview6.19307.2 86 07/19/2024
3.0.0-preview5-19227-01 101 07/19/2024
3.0.0-preview4-19216-03 90 07/19/2024
3.0.0-preview3-19153-02 96 07/19/2024
3.0.0-preview-19075-0444 91 07/19/2024