[Overview][Types][Classes] |
Read data from the compressed stream
Source position: zstream.pp line 86
public function TDecompressionStream.Read( |
var Buffer; |
Count: LongInt |
):LongInt; override; |
Buffer |
|
Buffer in which to store the read data |
Count |
|
Maximum number of bytes to read. |
Number of decompressed bytes that were actually read
Readwill read data from the compressed stream until the decompressed data size is Countor there is no more compressed data available. The decompressed data is written in Buffer. The function returns the number of bytes written in the buffer.
If an error occurs, an EDeCompressionErrorexception is raised.
|
Write data to the stream |