Property | Type | Description | |
---|---|---|---|
crc |
Method | Description | |
---|---|---|
GZipInputStream ( Stream baseInputStream ) : System |
Creates a GZipInputStream with the default buffer size
|
|
GZipInputStream ( Stream baseInputStream, int size ) : System |
Creates a GZIPInputStream with the specified buffer size
|
|
Read ( byte buffer, int offset, int count ) : int |
Reads uncompressed data into an array of bytes
|
Method | Description | |
---|---|---|
ReadFooter ( ) : void |
Method | Description | |
---|---|---|
ReadHeader ( ) : bool |
public GZipInputStream ( Stream baseInputStream ) : System | ||
baseInputStream | Stream | /// The stream to read compressed data from (baseInputStream GZIP format) /// |
return | System |
public GZipInputStream ( Stream baseInputStream, int size ) : System | ||
baseInputStream | Stream | /// The stream to read compressed data from (baseInputStream GZIP format) /// |
size | int | /// Size of the buffer to use /// |
return | System |
public Read ( byte buffer, int offset, int count ) : int | ||
buffer | byte | /// The buffer to read uncompressed data into /// |
offset | int | /// The offset indicating where the data should be placed /// |
count | int | /// The number of uncompressed bytes to be read /// |
return | int |