3 instantiations of FormatterCollection
Microsoft.AspNetCore.Mvc.Core (3)
MvcOptions.cs (2)
44
InputFormatters = new
FormatterCollection
<IInputFormatter>();
45
OutputFormatters = new
FormatterCollection
<IOutputFormatter>();
ObjectResult.cs (1)
25
Formatters = new
FormatterCollection
<IOutputFormatter>();
5 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)
101
public
FormatterCollection
<IInputFormatter> InputFormatters { get; }
197
public
FormatterCollection
<IOutputFormatter> OutputFormatters { get; }
ObjectResult.cs (1)
38
public
FormatterCollection
<IOutputFormatter> Formatters { get; set; }