2 instantiations of SystemTextJsonInputFormatter
Microsoft.AspNetCore.Mvc.Core (1)
Infrastructure\MvcCoreMvcOptionsSetup.cs (1)
71options.InputFormatters.Add(new SystemTextJsonInputFormatter(_jsonOptions.Value, _loggerFactory.CreateLogger<SystemTextJsonInputFormatter>()));
Microsoft.AspNetCore.Mvc.Core.Test (1)
Formatters\SystemTextJsonInputFormatterTest.cs (1)
186return new SystemTextJsonInputFormatter(
11 references to SystemTextJsonInputFormatter
Microsoft.AspNetCore.Mvc.Core (8)
Formatters\SystemTextJsonInputFormatter.cs (4)
17private readonly ILogger<SystemTextJsonInputFormatter> _logger; 20/// Initializes a new instance of <see cref="SystemTextJsonInputFormatter"/>. 26ILogger<SystemTextJsonInputFormatter> logger) 44/// A single instance of <see cref="SystemTextJsonInputFormatter"/> is used for all JSON formatting. Any
Infrastructure\MvcCoreMvcOptionsSetup.cs (1)
71options.InputFormatters.Add(new SystemTextJsonInputFormatter(_jsonOptions.Value, _loggerFactory.CreateLogger<SystemTextJsonInputFormatter>()));
JsonOptions.cs (3)
12/// Options to configure <see cref="SystemTextJsonInputFormatter"/> and <see cref="SystemTextJsonOutputFormatter"/>. 18/// <see cref="SystemTextJsonInputFormatter"/> will be added to the <see cref="ModelStateDictionary"/>. If 32/// Gets the <see cref="System.Text.Json.JsonSerializerOptions"/> used by <see cref="SystemTextJsonInputFormatter"/> and
Microsoft.AspNetCore.Mvc.Core.Test (1)
Formatters\SystemTextJsonInputFormatterTest.cs (1)
191LoggerFactory.CreateLogger<SystemTextJsonInputFormatter>());
Microsoft.AspNetCore.Mvc.NewtonsoftJson (1)
DependencyInjection\NewtonsoftJsonMvcOptionsSetup.cs (1)
49options.InputFormatters.RemoveType<SystemTextJsonInputFormatter>();
Microsoft.AspNetCore.Mvc.Test (1)
MvcOptionsSetupTest.cs (1)
107formatter => Assert.IsType<SystemTextJsonInputFormatter>(formatter));