C# Класс Stumps.ContentEncoder

A class that encodes and decodes the body of an HTTP request or an HTTP response for a specified HTTP content encoding method.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
ContentEncoder ( string encodingMethod ) : System

Initializes a new instance of the T:Stumps.ContentEncoder class.

Decode ( byte value ) : byte[]

Decodes the specified value.

Encode ( byte value ) : byte[]

Encodes the specified value.

Приватные методы

Метод Описание
CreateDeflateStream ( Stream stream, ContentEncoderMode mode ) : Stream

Creates a new instance of a deflate stream initialized to the specified mode.

CreateGzipStream ( Stream stream, ContentEncoderMode mode ) : Stream

Creates a new instance of a Gzip stream initialized to the specified mode.

Описание методов

ContentEncoder() публичный Метод

Initializes a new instance of the T:Stumps.ContentEncoder class.
public ContentEncoder ( string encodingMethod ) : System
encodingMethod string The HTTP encoding method.
Результат System

Decode() публичный Метод

Decodes the specified value.
public Decode ( byte value ) : byte[]
value byte The byte array to decode.
Результат byte[]

Encode() публичный Метод

Encodes the specified value.
public Encode ( byte value ) : byte[]
value byte The byte array to encode.
Результат byte[]