13 writes to SuppressInputFormatterBuffering
Microsoft.AspNetCore.Mvc.Formatters.Xml.Test (8)
XmlDataContractSerializerInputFormatterTest.cs (4)
208var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions { SuppressInputFormatterBuffering = true }); 276new MvcOptions() { SuppressInputFormatterBuffering = true }); 334var mvcOptions = new MvcOptions() { SuppressInputFormatterBuffering = false }; 345mvcOptions.SuppressInputFormatterBuffering = true;
XmlSerializerInputFormatterTest.cs (4)
86var formatter = new XmlSerializerInputFormatter(new MvcOptions { SuppressInputFormatterBuffering = true }); 159var formatter = new XmlSerializerInputFormatter(new MvcOptions() { SuppressInputFormatterBuffering = true }); 199mvcOptions.SuppressInputFormatterBuffering = false; 211mvcOptions.SuppressInputFormatterBuffering = true;
Microsoft.AspNetCore.Mvc.NewtonsoftJson.Test (5)
NewtonsoftJsonInputFormatterTest.cs (3)
63SuppressInputFormatterBuffering = true, 99SuppressInputFormatterBuffering = false, 120mvcOptions.SuppressInputFormatterBuffering = true;
NewtonsoftJsonPatchInputFormatterTest.cs (2)
62SuppressInputFormatterBuffering = false, 84mvcOptions.SuppressInputFormatterBuffering = true;
4 references to SuppressInputFormatterBuffering
Microsoft.AspNetCore.Mvc.Formatters.Xml (2)
XmlDataContractSerializerInputFormatter.cs (1)
118else if (!_options.SuppressInputFormatterBuffering)
XmlSerializerInputFormatter.cs (1)
102else if (!_options.SuppressInputFormatterBuffering)
Microsoft.AspNetCore.Mvc.NewtonsoftJson (2)
MvcNewtonsoftJsonOptions.cs (1)
42/// Gets the maximum size to buffer in memory when <see cref="MvcOptions.SuppressInputFormatterBuffering"/> is not set.
NewtonsoftJsonInputFormatter.cs (1)
104var suppressInputFormatterBuffering = _options.SuppressInputFormatterBuffering;