Rainbow 2.0 Code Documentation

CompressingFilter Constructor 

Protected constructor that sets up the underlying stream we're compressing into

[Visual Basic]
Protected Sub New( _ 
   ByVal Stream As Stream, _ 
   ByVal CompressionLevels As CompressionLevels _ 
)
[C#]
protected CompressingFilter(
   Stream Stream,
   CompressionLevels CompressionLevels
);
[C++]
protected: CompressingFilter(
   Stream* Stream,
   CompressionLevels CompressionLevels
);
[JScript]
protected function CompressingFilter(
   Stream Stream,
   CompressionLevels CompressionLevels
);

Parameters

baseStream
The stream we're wrapping up
compressionLevel
The level of compression to use when compressing the content

See Also

CompressingFilter Class | blowery.Web.HttpCompress Namespace