4 types derived from NewtonsoftJsonInputFormatter
Microsoft.AspNetCore.Mvc.Core.Test (2)
ModelBinding\Binders\BodyModelBinderTests.cs (2)
767private class TestableJsonInputFormatter : NewtonsoftJsonInputFormatter 837private class DerivedJsonInputFormatter : NewtonsoftJsonInputFormatter
Microsoft.AspNetCore.Mvc.NewtonsoftJson (1)
NewtonsoftJsonPatchInputFormatter.cs (1)
17public class NewtonsoftJsonPatchInputFormatter : NewtonsoftJsonInputFormatter
Microsoft.AspNetCore.Mvc.NewtonsoftJson.Test (1)
NewtonsoftJsonInputFormatterTest.cs (1)
563private class TestableJsonInputFormatter : NewtonsoftJsonInputFormatter
12 instantiations of NewtonsoftJsonInputFormatter
Microsoft.AspNetCore.Mvc.NewtonsoftJson (1)
DependencyInjection\NewtonsoftJsonMvcOptionsSetup.cs (1)
63options.InputFormatters.Add(new NewtonsoftJsonInputFormatter(
Microsoft.AspNetCore.Mvc.NewtonsoftJson.Test (11)
NewtonsoftJsonInputFormatterTest.cs (11)
29var formatter = new NewtonsoftJsonInputFormatter( 65var formatter = new NewtonsoftJsonInputFormatter( 101var formatter = new NewtonsoftJsonInputFormatter( 314var formatter = new NewtonsoftJsonInputFormatter( 349var formatter = new NewtonsoftJsonInputFormatter( 380var formatter = new NewtonsoftJsonInputFormatter( 411var formatter = new NewtonsoftJsonInputFormatter( 440var formatter = new NewtonsoftJsonInputFormatter( 488var formatter = new NewtonsoftJsonInputFormatter( 536var formatter = new NewtonsoftJsonInputFormatter( 585return new NewtonsoftJsonInputFormatter(
22 references to NewtonsoftJsonInputFormatter
Microsoft.AspNetCore.Mvc.NewtonsoftJson (7)
DependencyInjection\NewtonsoftJsonMvcOptionsSetup.cs (1)
62var jsonInputLogger = _loggerFactory.CreateLogger(typeof(NewtonsoftJsonInputFormatter));
MvcNewtonsoftJsonOptions.cs (3)
23/// <see cref="NewtonsoftJsonInputFormatter"/> will be added to the <see cref="ModelStateDictionary"/>. If 44/// <see cref="NewtonsoftJsonInputFormatter"/> buffers the input stream by default, buffering up to a certain amount in memory, before buffering to disk. 53/// for the current HTTP request is used for JSON deserialization by <see cref="NewtonsoftJsonInputFormatter"/>.
NewtonsoftJsonInputFormatter.cs (3)
31/// Initializes a new instance of <see cref="NewtonsoftJsonInputFormatter"/>. 76if (GetType() == typeof(NewtonsoftJsonInputFormatter)) 89/// <see cref="NewtonsoftJsonInputFormatter"/> has been used will have no effect.
Microsoft.AspNetCore.Mvc.NewtonsoftJson.Test (15)
NewtonsoftJsonInputFormatterTest.cs (15)
29var formatter = new NewtonsoftJsonInputFormatter( 65var formatter = new NewtonsoftJsonInputFormatter( 101var formatter = new NewtonsoftJsonInputFormatter( 157var formatter = CreateFormatter(serializerSettings, allowInputFormatterExceptionMessages: true); 235var formatter = CreateFormatter(allowInputFormatterExceptionMessages: true); 260var formatter = CreateFormatter(allowInputFormatterExceptionMessages: true); 291var formatter = CreateFormatter(allowInputFormatterExceptionMessages: false); 314var formatter = new NewtonsoftJsonInputFormatter( 349var formatter = new NewtonsoftJsonInputFormatter( 380var formatter = new NewtonsoftJsonInputFormatter( 411var formatter = new NewtonsoftJsonInputFormatter( 440var formatter = new NewtonsoftJsonInputFormatter( 488var formatter = new NewtonsoftJsonInputFormatter( 536var formatter = new NewtonsoftJsonInputFormatter( 583private NewtonsoftJsonInputFormatter CreateFormatter(JsonSerializerSettings serializerSettings = null, bool allowInputFormatterExceptionMessages = false)