Method | Description | |
---|---|---|
CloseEntry ( ) : void |
Closes the current zip entry and moves to the next one.
|
|
GetNextEntry ( ) : |
Advances to the next entry in the archive If the previous entry is still open |
|
Read ( byte buffer, int offset, int count ) : int |
Read a block of bytes from the stream. Zero bytes read means end of stream. |
|
ReadByte ( ) : int |
Reads a byte from the current zip entry.
|
|
ZipInputStream ( Stream baseInputStream ) : System |
Creates a new Zip input stream, for reading a zip archive.
|
|
ZipInputStream ( Stream baseInputStream, int bufferSize ) : System |
Creates a new Zip input stream, for reading a zip archive.
|
Method | Description | |
---|---|---|
Dispose ( bool disposing ) : void |
Closes the zip input stream
|
Method | Description | |
---|---|---|
BodyRead ( byte buffer, int offset, int count ) : int |
Reads a block of bytes from the current zip entry.
|
|
CompleteCloseEntry ( bool testCrc ) : void |
Complete cleanup as the final part of closing.
|
|
InitialRead ( byte destination, int offset, int count ) : int |
Perform the initial read on an entry which may include reading encryption headers and setting up inflation.
|
|
ReadDataDescriptor ( ) : void |
Read data descriptor at the end of compressed data.
|
|
ReadingNotAvailable ( byte destination, int offset, int count ) : int |
Handle attempts to read by throwing an InvalidOperationException.
|
|
ReadingNotSupported ( byte destination, int offset, int count ) : int |
Handle attempts to read from this entry by throwing an exception
|
public Read ( byte buffer, int offset, int count ) : int | ||
buffer | byte | The destination for the bytes. |
offset | int | The index to start storing data. |
count | int | The number of bytes to attempt to read. |
return | int |
public ZipInputStream ( Stream baseInputStream ) : System | ||
baseInputStream | Stream | The underlying |
return | System |
public ZipInputStream ( Stream baseInputStream, int bufferSize ) : System | ||
baseInputStream | Stream | The underlying |
bufferSize | int | Size of the buffer. |
return | System |