'Declaration Public Overloads Overrides Function Decompress( _ ByVal buffer() As Byte, _ ByVal offset As Integer, _ ByVal count As Integer, _ ByRef endOfData As Boolean, _ ByRef decompressed() As Byte, _ ByRef remaining As Integer _ ) As Integer
Parameters
- buffer
- An array of bytes to decompress. A maximum of count bytes are taken from this array and decompressed.
- offset
- The byte offset in buffer at which to begin taking the data to decompress.
- count
- The maximum number of bytes to be taken from buffer.
- endOfData
- true if the end of the compressed data has been reached; false otherwise.
- decompressed
- An array of bytes containing the decompressed data. Can be empty if no bytes were decompressed.
- remaining
- The number of unused bytes read from buffer the for decompression.
Return Value
A value representing the length of the decompressed stream.