1 instantiation of SystemTextJsonInputFormatter
Microsoft.AspNetCore.Mvc.Core (1)
Infrastructure\MvcCoreMvcOptionsSetup.cs (1)
71
options.InputFormatters.Add(new
SystemTextJsonInputFormatter
(_jsonOptions.Value, _loggerFactory.CreateLogger<SystemTextJsonInputFormatter>()));
8 references to SystemTextJsonInputFormatter
Microsoft.AspNetCore.Mvc.Core (8)
Formatters\SystemTextJsonInputFormatter.cs (4)
16
private readonly ILogger<
SystemTextJsonInputFormatter
> _logger;
20
/// Initializes a new instance of <see cref="
SystemTextJsonInputFormatter
"/>.
26
ILogger<
SystemTextJsonInputFormatter
> logger)
49
/// A single instance of <see cref="
SystemTextJsonInputFormatter
"/> is used for all JSON formatting. Any
Infrastructure\MvcCoreMvcOptionsSetup.cs (1)
71
options.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