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

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

Méthodes publiques

Méthode 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 méthode

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.
Résultat int

ReadRawBuffer() public méthode

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

ReadRawBuffer() public méthode

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.
Résultat int