Zip for WPF and Silverlight
C1.C1Zip Namespace / C1ZStreamReader Class / C1ZStreamReader Constructor / C1ZStreamReader Constructor(Stream,Boolean,Int64,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.
Specifies the method that was used to compress the stream.

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

    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.
    method
    Specifies the method that was used to compress the stream.
    See Also