Xceed .NET Libraries Documentation
Xceed.Zip Assembly / Xceed.Zip.ReaderWriter Namespace / ZipWriter Class / ZipWriter Constructor / ZipWriter Constructor(Stream,Boolean)
The stream to which the zip archive will be written.
A value indicating whether Zip64 extensions will be used in the resulting archive.


In This Topic
    ZipWriter Constructor(Stream,Boolean)
    In This Topic
    Initializes a new instance of the ZipWriter class using the specified output stream, optionally using Zip64 extensions in the resulting archive, and not allowing the object to close the output stream.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal outputStream As Stream, _
       ByVal allowZip64Extensions As Boolean _
    )
    'Usage
     
    Dim outputStream As Stream
    Dim allowZip64Extensions As Boolean
     
    Dim instance As New ZipWriter(outputStream, allowZip64Extensions)
    public ZipWriter( 
       Stream outputStream,
       bool allowZip64Extensions
    )

    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.
    Remarks

    See the remarks of the AllowZip64Extensions property for details on the implications of the allowZip64Extensions parameter.

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also