Xceed .NET Libraries Documentation
Xceed.Zip Assembly / Xceed.Zip.ReaderWriter Namespace / ZipWriter Class / ZipWriter Constructor / ZipWriter Constructor(Stream)
The stream to which the zip archive will be written.


In This Topic
    ZipWriter Constructor(Stream)
    In This Topic
    Initializes a new instance of the ZipWriter class using the specified output stream, without 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 _
    )
    'Usage
     
    Dim outputStream As Stream
     
    Dim instance As New ZipWriter(outputStream)
    public ZipWriter( 
       Stream outputStream
    )

    Parameters

    outputStream
    The stream to which the zip archive will be written.
    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