C# 클래스 PuyoTools.Modules.Compression.CompCompression

상속: PuyoTools.Modules.Compression.Lz11Compression
파일 보기 프로젝트 열기: nickworonekin/puyotools

공개 메소드들

메소드 설명
Compress ( Stream source, Stream destination ) : void

Compress data from a stream.

Decompress ( Stream source, Stream destination ) : void

Decompress data from a stream.

Is ( Stream source, int length, string fname ) : bool

Determines if the data is in the specified format.

메소드 상세

Compress() 공개 메소드

Compress data from a stream.
public Compress ( Stream source, Stream destination ) : void
source Stream The stream to read from.
destination Stream The stream to write to.
리턴 void

Decompress() 공개 메소드

Decompress data from a stream.
public Decompress ( Stream source, Stream destination ) : void
source Stream The stream to read from.
destination Stream The stream to write to.
리턴 void

Is() 공개 메소드

Determines if the data is in the specified format.
public Is ( Stream source, int length, string fname ) : bool
source Stream The stream to read from.
length int Number of bytes to read.
fname string Name of the file.
리턴 bool