Method | Description | |
---|---|---|
Close ( ) : void |
Closes this Filter and calls the base class implementation.
|
|
Flush ( ) : void |
Flushes the stream out to underlying storage
|
|
GZipFilter ( |
Primary constructor. Need to pass in a stream to wrap up with gzip.
|
|
Write ( byte buffer, int offset, int count ) : void |
Write content to the stream and have it compressed using gzip.
|
public GZipFilter ( |
||
baseStream | The stream to wrap in gzip. Must have CanWrite. | |
return | System.IO |
public Write ( byte buffer, int offset, int count ) : void | ||
buffer | byte | The bytes to write |
offset | int | The offset into the buffer to start reading bytes |
count | int | The number of bytes to write |
return | void |