Zip for WPF and Silverlight
C1.C1Zip.ZLib Namespace / ZStream Class / ZStream Constructor / ZStream Constructor(Boolean)
True to use a CRC32 checksum, False to use an Adler checksum.

In This Topic
    ZStream Constructor(Boolean)
    In This Topic
    Initializes a new instance of the ZStream class.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal crc32 As Boolean _
    )
    public ZStream( 
       bool crc32
    )

    Parameters

    crc32
    True to use a CRC32 checksum, False to use an Adler checksum.
    Remarks
    CRC32 checksums are the standard used in zip files. Adler checksums are the default used by ZLIB. Adler checksums are faster to calculate, but are not compatible with the zip format.
    See Also