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 header,
	bool crc32
)
Visual Basic
Public Sub New ( _
	baseStream As Stream, _
	header As Boolean, _
	crc32 As Boolean _
)

Parameters

baseStream
Type: System.IO..::..Stream
Input stream that contains the compressed data.
header
Type: System..::..Boolean
Specifies whether the compressed stream contains header information (should be False for streams in zip files).
crc32
Type: System..::..Boolean
Specifies whether the compressed stream contains a CRC32 checksum (should be True for streams in zip files).

See Also