Method | Description | |
---|---|---|
Close ( ) : void |
Closes this Filter and calls the base class implementation.
|
|
DeflateFilter ( |
Basic constructor that uses the Normal compression level
|
|
DeflateFilter ( |
Full constructor that allows you to set the wrapped stream and the level of compression
|
|
Flush ( ) : void |
Flushes that the filter out to underlying storage
|
|
Write ( byte buffer, int offset, int count ) : void |
Write out bytes to the underlying stream after compressing them using deflate
|
public DeflateFilter ( |
||
baseStream | The stream to wrap up with the deflate algorithm | |
return | System.IO |
public DeflateFilter ( |
||
baseStream | The stream to wrap up with the deflate algorithm | |
compressionLevel | CompressionLevels | The level of compression to use |
return | System.IO |
public Write ( byte buffer, int offset, int count ) : void | ||
buffer | byte | The array of bytes to write |
offset | int | The offset into the supplied buffer to start |
count | int | The number of bytes to write |
return | void |