9 instantiations of HttpNoContentOutputFormatter
BasicWebSite (1)
Controllers\ContentNegotiation\NoContentDoNotTreatNullValueAsNoContentController.cs (1)
17var noContentFormatter = new HttpNoContentOutputFormatter() { TreatNullValueAsNoContent = false };
Microsoft.AspNetCore.Mvc.Core (1)
Infrastructure\MvcCoreMvcOptionsSetup.cs (1)
77options.OutputFormatters.Add(new HttpNoContentOutputFormatter());
Microsoft.AspNetCore.Mvc.Core.Test (7)
Formatters\FormatFilterTest.cs (1)
463MvcOptions.OutputFormatters.Add(new HttpNoContentOutputFormatter());
Formatters\NoContentFormatterTests.cs (6)
50var formatter = new HttpNoContentOutputFormatter(); 74var formatter = new HttpNoContentOutputFormatter(); 102var formatter = new HttpNoContentOutputFormatter() 124var formatter = new HttpNoContentOutputFormatter(); 143var formatter = new HttpNoContentOutputFormatter(); 166var formatter = new HttpNoContentOutputFormatter();
8 references to HttpNoContentOutputFormatter
BasicWebSite (1)
Controllers\ContentNegotiation\NoContentDoNotTreatNullValueAsNoContentController.cs (1)
17var noContentFormatter = new HttpNoContentOutputFormatter() { TreatNullValueAsNoContent = false };
Microsoft.AspNetCore.Mvc.Core.Test (6)
Formatters\NoContentFormatterTests.cs (6)
50var formatter = new HttpNoContentOutputFormatter(); 74var formatter = new HttpNoContentOutputFormatter(); 102var formatter = new HttpNoContentOutputFormatter() 124var formatter = new HttpNoContentOutputFormatter(); 143var formatter = new HttpNoContentOutputFormatter(); 166var formatter = new HttpNoContentOutputFormatter();
Microsoft.AspNetCore.Mvc.Test (1)
MvcOptionsSetupTest.cs (1)
92formatter => Assert.IsType<HttpNoContentOutputFormatter>(formatter),