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.
파일 보기 프로젝트 열기: Cayan-LLC/stumps 1 사용 예제들

공개 메소드들

메소드 설명
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[]