ComponentOne Zip for UWP
C1.UWP.Zip Assembly / C1.C1Zip Namespace / C1ZipFile Class / C1ZipFile Constructor / C1ZipFile Constructor(Stream,Boolean)
System.IO.Stream that contains the zip data.
Whether to initialize the stream with an empty zip header or open an existing zip file in the stream.

In This Topic
    C1ZipFile Constructor(Stream,Boolean)
    In This Topic
    Initializes a new instance of the C1ZipFile class and opens a zip stream associated with this new instance.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal stream As System.IO.Stream, _
       ByVal create As System.Boolean _
    )
    public C1ZipFile( 
       System.IO.Stream stream,
       System.bool create
    )

    Parameters

    stream
    System.IO.Stream that contains the zip data.
    create
    Whether to initialize the stream with an empty zip header or open an existing zip file in the stream.
    See Also