Microsoft.AspNetCore.Mvc.NewtonsoftJson 10.0.4

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
105
NSwag.Commands
NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript
106
NSwag.Commands
NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript
107
NSwag.Commands
NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript
108
NSwag.Commands
NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript
110
NSwag.Commands
NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript
111
NSwag.Commands
NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript
112
NSwag.Commands
NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript
114
NSwag.Commands
NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript
116
NSwag.Commands
NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript
120
NSwag.Commands
NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript
123
NSwag.Commands
NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript
125
NSwag.Generation.AspNetCore
NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript
103
NSwag.Generation.AspNetCore
NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript
107
NSwag.Generation.AspNetCore
NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript
116
Swashbuckle.AspNetCore.SwaggerGen
Swagger Generator for API's built on ASP.NET Core
109
Swashbuckle.AspNetCore.SwaggerGen
Swagger Generator for API's built on ASP.NET Core
110
Swashbuckle.AspNetCore.SwaggerGen
Swagger Generator for API's built on ASP.NET Core
114
Swashbuckle.AspNetCore.SwaggerGen
Swagger Generator for API's built on ASP.NET Core
139

Version Downloads Last updated
11.0.0-preview.2.26159.112 1 03/12/2026
11.0.0-preview.1.26104.118 11 02/11/2026
10.0.5 0 03/12/2026
10.0.4 4 03/11/2026
10.0.3 17 02/11/2026
10.0.2 61 01/14/2026
10.0.1 47 12/10/2025
10.0.0 79 11/11/2025
10.0.0-rc.2.25502.107 79 10/14/2025
10.0.0-rc.1.25451.107 70 09/09/2025
10.0.0-preview.7.25380.108 77 08/12/2025
10.0.0-preview.6.25358.103 69 07/15/2025
10.0.0-preview.5.25277.114 70 06/07/2025
10.0.0-preview.4.25258.110 88 05/13/2025
10.0.0-preview.3.25172.1 90 04/11/2025
10.0.0-preview.2.25164.1 97 04/02/2025
10.0.0-preview.1.25120.3 87 04/02/2025
9.0.14 1 03/12/2026
9.0.13 10 02/11/2026
9.0.12 13 01/14/2026
9.0.11 41 11/11/2025
9.0.10 70 10/14/2025
9.0.9 65 09/09/2025
9.0.8 303 08/05/2025
9.0.7 117 07/08/2025
9.0.6 77 06/12/2025
9.0.5 90 05/14/2025
9.0.4 86 04/11/2025
9.0.3 271 03/15/2025
9.0.2 228 02/14/2025
9.0.1 81 02/07/2025
9.0.0 101 11/14/2024
9.0.0-rc.2.24474.3 97 10/16/2024
9.0.0-rc.1.24452.1 86 09/19/2024
9.0.0-preview.7.24406.2 99 08/19/2024
9.0.0-preview.6.24328.4 118 07/19/2024
9.0.0-preview.5.24306.11 134 07/20/2024
9.0.0-preview.4.24267.6 124 07/20/2024
9.0.0-preview.3.24172.13 123 07/20/2024
9.0.0-preview.2.24128.4 118 07/20/2024
9.0.0-preview.1.24081.5 132 07/20/2024
8.0.25 2 03/12/2026
8.0.24 10 02/11/2026
8.0.23 17 01/14/2026
8.0.22 41 11/11/2025
8.0.21 41 10/14/2025
8.0.20 49 09/09/2025
8.0.19 73 08/05/2025
8.0.18 74 07/08/2025
8.0.17 69 06/10/2025
8.0.16 70 05/14/2025
8.0.15 86 04/10/2025
8.0.14 84 03/30/2025
8.0.13 95 03/30/2025
8.0.12 88 03/30/2025
8.0.11 97 11/14/2024
8.0.10 358 10/15/2024
8.0.8 289 08/19/2024
8.0.7 148 07/20/2024
8.0.6 167 06/27/2024
8.0.5 119 07/20/2024
8.0.4 119 07/20/2024
8.0.3 122 07/20/2024
8.0.2 189 02/15/2024
8.0.1 197 02/04/2024
8.0.0 106 07/20/2024
8.0.0-rc.2.23480.2 130 07/20/2024
8.0.0-rc.1.23421.29 110 07/20/2024
8.0.0-preview.7.23375.9 124 07/20/2024
8.0.0-preview.6.23329.11 137 07/20/2024
8.0.0-preview.5.23302.2 115 07/20/2024
8.0.0-preview.4.23260.4 109 07/20/2024
8.0.0-preview.3.23177.8 131 07/20/2024
8.0.0-preview.2.23153.2 113 07/20/2024
8.0.0-preview.1.23112.2 120 07/20/2024
7.0.20 117 07/20/2024
7.0.19 107 07/20/2024
7.0.18 118 07/20/2024
7.0.17 121 07/20/2024
7.0.16 110 07/20/2024
7.0.15 118 07/20/2024
7.0.14 116 07/20/2024
7.0.13 130 07/20/2024
7.0.12 118 07/20/2024
7.0.11 120 07/20/2024
7.0.10 125 07/20/2024
7.0.9 111 07/20/2024
7.0.8 118 07/20/2024
7.0.7 114 07/20/2024
7.0.5 116 07/20/2024
7.0.4 136 07/20/2024
7.0.3 171 02/04/2024
7.0.2 117 07/20/2024
7.0.1 117 07/20/2024
7.0.0 113 02/04/2024
7.0.0-rc.2.22476.2 132 07/20/2024
7.0.0-rc.1.22427.2 107 07/20/2024
7.0.0-preview.7.22376.6 107 07/20/2024
7.0.0-preview.6.22330.3 126 07/20/2024
7.0.0-preview.5.22303.8 115 07/20/2024
7.0.0-preview.4.22251.1 149 07/20/2024
7.0.0-preview.3.22178.4 121 07/20/2024
7.0.0-preview.2.22153.2 118 07/20/2024
7.0.0-preview.1.22109.13 124 07/20/2024
6.0.36 97 11/14/2024
6.0.35 90 10/19/2024
6.0.33 102 08/19/2024
6.0.32 100 07/20/2024
6.0.31 121 07/20/2024
6.0.30 120 07/20/2024
6.0.29 110 07/20/2024
6.0.28 124 07/20/2024
6.0.27 119 07/20/2024
6.0.26 131 07/20/2024
6.0.25 106 07/20/2024
6.0.24 122 07/20/2024
6.0.23 112 07/20/2024
6.0.22 119 07/20/2024
6.0.21 116 07/20/2024
6.0.20 108 07/20/2024
6.0.19 118 07/20/2024
6.0.18 117 07/20/2024
6.0.16 118 07/20/2024
6.0.15 120 07/20/2024
6.0.14 116 07/20/2024
6.0.13 109 07/20/2024
6.0.12 110 07/20/2024
6.0.11 114 07/20/2024
6.0.10 115 07/20/2024
6.0.9 116 07/20/2024
6.0.8 113 07/20/2024
6.0.7 121 07/20/2024
6.0.6 110 07/20/2024
6.0.5 106 07/20/2024
6.0.4 134 07/19/2024
6.0.3 139 02/05/2024
6.0.2 111 07/19/2024
6.0.1 107 07/19/2024
6.0.0 110 07/19/2024
6.0.0-rc.2.21480.10 118 07/19/2024
6.0.0-rc.1.21452.15 127 07/19/2024
6.0.0-preview.7.21378.6 115 07/19/2024
6.0.0-preview.6.21355.2 120 07/19/2024
6.0.0-preview.5.21301.17 128 07/19/2024
6.0.0-preview.4.21253.5 125 07/19/2024
6.0.0-preview.3.21201.13 123 07/19/2024
6.0.0-preview.2.21154.6 119 07/19/2024
6.0.0-preview.1.21103.6 136 07/19/2024
5.0.17 116 07/19/2024
5.0.16 119 07/19/2024
5.0.15 133 07/19/2024
5.0.14 105 07/19/2024
5.0.13 108 07/19/2024
5.0.12 114 07/19/2024
5.0.11 116 07/19/2024
5.0.10 126 07/19/2024
5.0.9 114 07/19/2024
5.0.8 127 07/19/2024
5.0.7 111 07/19/2024
5.0.6 125 07/19/2024
5.0.5 113 07/19/2024
5.0.4 123 07/19/2024
5.0.3 109 07/19/2024
5.0.2 123 07/19/2024
5.0.1 106 07/19/2024
5.0.0 125 07/19/2024
5.0.0-rc.2.20475.17 135 07/19/2024
5.0.0-rc.1.20451.17 117 07/19/2024
5.0.0-preview.8.20414.8 128 07/19/2024
5.0.0-preview.7.20365.19 113 07/19/2024
5.0.0-preview.6.20312.15 123 07/19/2024
5.0.0-preview.5.20279.2 120 07/19/2024
5.0.0-preview.4.20257.10 112 07/19/2024
5.0.0-preview.3.20215.14 131 07/19/2024
5.0.0-preview.2.20167.3 127 07/19/2024
5.0.0-preview.1.20124.5 118 07/19/2024
3.1.32 113 07/19/2024
3.1.31 121 07/19/2024
3.1.30 123 07/19/2024
3.1.29 112 07/19/2024
3.1.28 124 07/19/2024
3.1.27 121 07/19/2024
3.1.26 134 07/19/2024
3.1.25 119 07/19/2024
3.1.24 122 07/19/2024
3.1.23 124 07/19/2024
3.1.22 127 07/19/2024
3.1.21 116 07/19/2024
3.1.20 114 07/19/2024
3.1.19 123 07/19/2024
3.1.18 124 07/19/2024
3.1.17 128 07/19/2024
3.1.16 118 07/19/2024
3.1.15 112 07/19/2024
3.1.14 108 07/19/2024
3.1.13 116 07/19/2024
3.1.12 122 07/19/2024
3.1.11 124 07/19/2024
3.1.10 124 07/19/2024
3.1.9 114 07/19/2024
3.1.8 119 07/19/2024
3.1.7 127 07/19/2024
3.1.6 104 07/19/2024
3.1.5 109 07/19/2024
3.1.4 134 07/19/2024
3.1.3 119 07/19/2024
3.1.2 105 07/19/2024
3.1.1 135 07/19/2024
3.1.0 120 07/19/2024
3.1.0-preview3.19555.2 137 07/19/2024
3.1.0-preview2.19528.8 122 07/19/2024
3.1.0-preview1.19508.20 114 07/19/2024
3.0.3 122 07/19/2024
3.0.2 120 07/19/2024
3.0.0 114 07/19/2024
3.0.0-rc1.19457.4 123 07/19/2024
3.0.0-preview9.19424.4 114 07/19/2024
3.0.0-preview8.19405.7 129 07/19/2024
3.0.0-preview7.19365.7 127 07/19/2024
3.0.0-preview6.19307.2 123 07/19/2024
3.0.0-preview5-19227-01 129 07/19/2024
3.0.0-preview4-19216-03 117 07/19/2024
3.0.0-preview3-19153-02 125 07/19/2024
3.0.0-preview-19075-0444 117 07/19/2024