compress the in-memory buffer data
ZipDataPipe
01 Syntax
Microsoft.VisualBasic.Parallel.ZipDataPipe
02 Methods
| Name | Overloads | Summary |
|---|---|---|
| .ctor | 1 | extract all bytes data from the input MemoryStream for construct a new data package |
| GetBlocks | 1 | get data in zip-compressed stream |
| Read | 1 | get data in zip-compressed stream |
| UncompressBuffer | 1 | |
| TestBufferMagic | 1 |
03 Members
#ctor(
MemoryStream)extract all bytes data from the input MemoryStream for construct a new data package
Parameters
| Name | Type | Description |
|---|---|---|
data | MemoryStream | - |
GetBlocks
get data in zip-compressed stream
Remarks
just returns one block of the data, this function works based on the ZipDataPipe.Read() function.
Read
get data in zip-compressed stream
UncompressBuffer(Byte())
Parameters
| Name | Type | Description |
|---|---|---|
wrap | Byte() | the zip data should has the magic header |
TestBufferMagic(Byte())