Creates a new DeflaterOutputStream with the given Deflater and buffer size.
[Visual Basic]
Overloads Public Sub New( _
   ByVal baseOutputStream As System.IO.Stream, _
   ByVal defl As ICSharpCode.SharpZipLib.Zip.Compression.Deflater, _
   ByVal bufsize As Integer _
)
[C#]
public DeflaterOutputStream(
   Stream baseOutputStream,
   Deflater defl,
   int bufsize
);
Parameters
baseOutputStream
the output stream where deflated output should be written.
defl
the underlying deflater.
bufsize
the buffer size.
Exceptions
Exception Type | Condition |
---|---|
System.InvalidOperationException | if bufsize isn't positive. |
See Also
DeflaterOutputStream Class | DeflaterOutputStream Members | ICSharpCode.SharpZipLib.Zip.Compression.Streams Namespace | DeflaterOutputStream Constructor Overload List