C# Class ICSharpCode.SharpZipLib.Zip.Compression.Streams.InflaterInputBuffer

An input buffer customised for use by InflaterInputStream
The buffer supports decryption of incoming data.
Datei anzeigen Open project: icsharpcode/SharpZipLib Class Usage Examples

Public Methods

Method Description
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

Method Details

ReadClearTextBuffer() public method

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.
return int

ReadRawBuffer() public method

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

ReadRawBuffer() public method

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.
return int