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

ZipOutputStream() public method

Create a ZipOutputStream.
See the documentation for the ZipOutputStream(Stream) constructor for an example.
public ZipOutputStream ( Stream stream, bool leaveOpen ) : System
stream Stream /// The stream to wrap. It must be writable. ///
leaveOpen bool /// true if the application would like the stream /// to remain open after the ZipOutputStream has been closed. ///
return System
        public ZipOutputStream(Stream stream, bool leaveOpen)
        {
            _Init(stream, leaveOpen, null);
        }

Same methods

ZipOutputStream::ZipOutputStream ( Stream stream ) : System
ZipOutputStream::ZipOutputStream ( String fileName ) : System