ComponentOne Zip for UWP
C1.UWP.Zip Assembly / C1.C1Zip Namespace / C1ZStreamReader Class / C1ZStreamReader Constructor / C1ZStreamReader Constructor(Stream,Boolean,Int32)
Input stream that contains the compressed data.
Specifies whether the compressed stream was created in zip format.
Specifies the number of compressed bytes to read from the stream.

In This Topic
    C1ZStreamReader Constructor(Stream,Boolean,Int32)
    In This Topic
    Initializes a new instance of the C1ZStreamReader class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal baseStream As System.IO.Stream, _
       ByVal zip As System.Boolean, _
       ByVal sizeCompressed As System.Integer _
    )
    public C1ZStreamReader( 
       System.IO.Stream baseStream,
       System.bool zip,
       System.int sizeCompressed
    )

    Parameters

    baseStream
    Input stream that contains the compressed data.
    zip
    Specifies whether the compressed stream was created in zip format.
    sizeCompressed
    Specifies the number of compressed bytes to read from the stream.
    Remarks
    The sizeCompressed parameter is needed only when a single stream contains several compressed streams (in zip files for example). If this parameter is not specified, it is assumed that the stream contains a single stream of compressed data.
    See Also