'Declaration Public Function New( _ ByVal outputStream As Stream, _ ByVal allowZip64Extensions As Boolean, _ ByVal allowOutputStreamClosure As Boolean _ )
'Usage Dim outputStream As Stream Dim allowZip64Extensions As Boolean Dim allowOutputStreamClosure As Boolean Dim instance As New ZipWriter(outputStream, allowZip64Extensions, allowOutputStreamClosure)
public ZipWriter( Stream outputStream, bool allowZip64Extensions, bool allowOutputStreamClosure )
Parameters
- outputStream
- The stream to which the zip archive will be written.
- allowZip64Extensions
- A value indicating whether Zip64 extensions will be used in the resulting archive.
- allowOutputStreamClosure
- A value indicating whether the output stream can be closed by the object.