10 instantiations of FormatterCollection
Microsoft.AspNetCore.Mvc.Core (3)
MvcOptions.cs (2)
44InputFormatters = new FormatterCollection<IInputFormatter>(); 45OutputFormatters = new FormatterCollection<IOutputFormatter>();
ObjectResult.cs (1)
25Formatters = new FormatterCollection<IOutputFormatter>();
Microsoft.AspNetCore.Mvc.Core.Test (7)
Formatters\FormatterCollectionTest.cs (2)
14var collection = new FormatterCollection<IOutputFormatter> 33var collection = new FormatterCollection<IOutputFormatter>
Infrastructure\ObjectResultExecutorTest.cs (1)
267result.Formatters = new FormatterCollection<IOutputFormatter>
ObjectResultTests.cs (4)
41Formatters = new FormatterCollection<IOutputFormatter>() 73Formatters = new FormatterCollection<IOutputFormatter>() 102Formatters = new FormatterCollection<IOutputFormatter>() 133Formatters = new FormatterCollection<IOutputFormatter>()
7 references to FormatterCollection
Microsoft.AspNetCore.Mvc.Abstractions (2)
Formatters\FormatterCollection.cs (2)
15/// Initializes a new instance of the <see cref="FormatterCollection{TFormatter}"/> class that is empty. 22/// Initializes a new instance of the <see cref="FormatterCollection{TFormatter}"/> class
Microsoft.AspNetCore.Mvc.Core (3)
MvcOptions.cs (2)
101public FormatterCollection<IInputFormatter> InputFormatters { get; } 197public FormatterCollection<IOutputFormatter> OutputFormatters { get; }
ObjectResult.cs (1)
38public FormatterCollection<IOutputFormatter> Formatters { get; set; }
Microsoft.AspNetCore.Mvc.Core.Test (2)
Formatters\FormatterCollectionTest.cs (2)
14var collection = new FormatterCollection<IOutputFormatter> 33var collection = new FormatterCollection<IOutputFormatter>