Inheritance diagram for ICSharpCode::SharpZipLib::Zip::ZipFile::PartialInputStream:
Public Member Functions | |
PartialInputStream (Stream baseStream, long start, long len) | |
override int | ReadByte () |
Read a byte from this stream. | |
override void | Close () |
Close this partial input stream. | |
override int | Read (byte[] b, int off, int len) |
Decompresses data into the byte array. | |
long | SkipBytes (long amount) |
Properties | |
override int | Available |
Returns 0 once the end of the stream (EOF) has been reached. Otherwise returns 1. | |
Private Attributes | |
Stream | baseStream |
long | filepos |
long | end |
Definition at line 928 of file ZipFile.cs.
|
Definition at line 933 of file ZipFile.cs. |
|
Close this partial input stream. The underlying stream is not closed. Close the parent ZipFile class to do that. Reimplemented from ICSharpCode::SharpZipLib::Zip::Compression::Streams::InflaterInputStream. Definition at line 975 of file ZipFile.cs. |
|
Decompresses data into the byte array.
Reimplemented from ICSharpCode::SharpZipLib::Zip::Compression::Streams::InflaterInputStream. Definition at line 980 of file ZipFile.cs. |
|
Read a byte from this stream.
Definition at line 956 of file ZipFile.cs. |
|
Definition at line 999 of file ZipFile.cs. |
|
Definition at line 930 of file ZipFile.cs. |
|
Definition at line 931 of file ZipFile.cs. |
|
Definition at line 931 of file ZipFile.cs. |
|
Returns 0 once the end of the stream (EOF) has been reached. Otherwise returns 1.
Reimplemented from ICSharpCode::SharpZipLib::Zip::Compression::Streams::InflaterInputStream. Definition at line 941 of file ZipFile.cs. |