Initializes a new instance of the C1ZStreamReader class.

Namespace:  C1.C1Zip
Assembly:  C1.Silverlight.Zip (in C1.Silverlight.Zip.dll)

Syntax

C#
public C1ZStreamReader(
	Stream baseStream,
	bool zip,
	int sizeCompressed,
	int method
)
Visual Basic
Public Sub New ( _
	baseStream As Stream, _
	zip As Boolean, _
	sizeCompressed As Integer, _
	method As Integer _
)

Parameters

baseStream
Type: System.IO..::..Stream
Input stream that contains the compressed data.
zip
Type: System..::..Boolean
Specifies whether the compressed stream was created in zip format.
sizeCompressed
Type: System..::..Int32
Specifies the number of compressed bytes to read from the stream.
method
Type: System..::..Int32
Specifies the method that was used to compress the stream.

See Also