[]
Reads a sequence of bytes from the underlying compressed stream, decompressing them into a buffer, then advances the position within the stream by the number of bytes read.
public override int Read(byte[] buf, int offset, int count)
| Type | Name | Description |
|---|---|---|
| byte[] | buf | An array of bytes. When this method returns, |
| int | offset | The zero-based byte offset in |
| int | count | The maximum number of (decompressed) bytes to be read from the current stream. |
| Type | Description |
|---|---|
| int | The total number of bytes read into the buffer. This may be less than the number of bytes requested if that many bytes are not currently available, or zero (0) if the end of the stream has been reached. |