Table of Contents

Namespace Cuemon.AspNetCore.Mvc.Formatters

Assembly: Cuemon.AspNetCore.Mvc.dll

The Cuemon.AspNetCore,Mvc.Formatters namespace contains types that customizes working with both TextInputFormatter and TextOutputFormatter. The namespace is an addition to the Microsoft.AspNetCore.Mvc.Formatters namespace.

Availability: .NET 8, .NET 7 and .NET 6

Complements: Microsoft.AspNetCore.Mvc.Formatters namespace 🔗

Related:

Classes

ConfigurableInputFormatter<TOptions>

Provides an alternate way to read an object from a request body with a text format.

ConfigurableOutputFormatter<TOptions>

Provides an alternate way to write an object in a given text format to the output stream.

StreamInputFormatter<TFormatter, TOptions>

Provides a way to read an object from a request body with a text format with the constraint that TFormatter must be assignable from Formatter<TFormat>. Implements the ConfigurableInputFormatter<TOptions>

StreamOutputFormatter<TFormatter, TOptions>

Provides a way to write an object in a given text format to the output stream with the constraint that TFormatter must be assignable from Formatter<TFormat>. Implements the ConfigurableOutputFormatter<TOptions>