C# 클래스 ICSharpCode.SharpZipLib.Zip.Compression.Streams.InflaterInputBuffer

An input buffer customised for use by InflaterInputStream
The buffer supports decryption of incoming data.
파일 보기 프로젝트 열기: icsharpcode/SharpZipLib 1 사용 예제들

공개 메소드들

메소드 설명
ReadClearTextBuffer ( byte outBuffer, int offset, int length ) : int

Read clear text data from the input stream.

ReadRawBuffer ( byte buffer ) : int

Read a buffer directly from the input stream

ReadRawBuffer ( byte outBuffer, int offset, int length ) : int

Read a buffer directly from the input stream

메소드 상세

ReadClearTextBuffer() 공개 메소드

Read clear text data from the input stream.
public ReadClearTextBuffer ( byte outBuffer, int offset, int length ) : int
outBuffer byte The buffer to add data to.
offset int The offset to start adding data at.
length int The number of bytes to read.
리턴 int

ReadRawBuffer() 공개 메소드

Read a buffer directly from the input stream
public ReadRawBuffer ( byte buffer ) : int
buffer byte The buffer to fill
리턴 int

ReadRawBuffer() 공개 메소드

Read a buffer directly from the input stream
public ReadRawBuffer ( byte outBuffer, int offset, int length ) : int
outBuffer byte The buffer to read into
offset int The offset to start reading data into.
length int The number of bytes to read.
리턴 int