Ionic.Zip.ZipOutputStream.ZipOutputStream C# (CSharp) Method

ZipOutputStream() public method

Create a ZipOutputStream, wrapping an existing stream.

The ZipFile class is generally easier to use when creating zip files. The ZipOutputStream offers a different metaphor for creating a zip file, based on the System.IO.Stream class.

public ZipOutputStream ( Stream stream ) : System
stream Stream /// The stream to wrap. It must be writable. This stream will be closed at /// the time the ZipOutputStream is closed. ///
return System
        public ZipOutputStream(Stream stream) : this(stream, false) { }

Same methods

ZipOutputStream::ZipOutputStream ( Stream stream, bool leaveOpen ) : System
ZipOutputStream::ZipOutputStream ( String fileName ) : System