RawRequestBodyFormatter - класс

Formatter that allows content of type text/plain and application/octet stream or no content type to be parsed to raw data. Allows for a single input parameter in the form of: public string RawString([FromBody] string data) public byte[] RawData([FromBody] byte[] data)

Definition

Пространство имён: Tessa.Web.Serialization
Сборка: Tessa.Web (в Tessa.Web.dll) Версия: 3.6.0.22
C#
public class RawRequestBodyFormatter : InputFormatter
Inheritance
Object    InputFormatter    RawRequestBodyFormatter

Конструкторы

RawRequestBodyFormatterИнициализирует новый экземпляр класса RawRequestBodyFormatter

Свойства

SupportedMediaTypes Gets the mutable collection of media type elements supported by this InputFormatter.
(Унаследован от InputFormatter)

Методы

CanRead(InputFormatterContext)
(Унаследован от InputFormatter)
CanRead(InputFormatterContext) Allow text/plain, application/octet-stream and no content type to be processed
CanReadType Determines whether this InputFormatter can deserialize an object of the given type.
(Унаследован от InputFormatter)
GetDefaultValueForType Gets the default value for a given type. Used to return a default value when the body contains no content.
(Унаследован от InputFormatter)
GetSupportedContentTypes
(Унаследован от InputFormatter)
ReadAsync
(Унаследован от InputFormatter)
ReadRequestBodyAsync(InputFormatterContext) Handle text/plain or no content type for string results Handle application/octet-stream for byte[] results
ReadRequestBodyAsync(Void)
(Унаследован от InputFormatter)

См. также