ComponentOne Zip for .NET 2.0
C1.Zip Assembly / C1.Zip Namespace / C1ZStreamWriter Class / C1ZStreamWriter Constructor / C1ZStreamWriter Constructor(Stream,CompressionLevelEnum,Boolean,Boolean)
Output stream that will contain the compressed data.
Compression level to use when compressing data.
Include header information in compressed stream (should be False for streams in zip files).
Include CRC32 checksum in compressed stream (should be True for streams in zip files).

In This Topic
    C1ZStreamWriter Constructor(Stream,CompressionLevelEnum,Boolean,Boolean)
    In This Topic
    Initializes a new instance of the C1ZStreamWriter class.
    Syntax
    Public Function New( _
       ByVal baseStream As Stream, _
       ByVal level As CompressionLevelEnum, _
       ByVal header As Boolean, _
       ByVal crc32 As Boolean _
    )
    public C1ZStreamWriter( 
       Stream baseStream,
       CompressionLevelEnum level,
       bool header,
       bool crc32
    )

    Parameters

    baseStream
    Output stream that will contain the compressed data.
    level
    Compression level to use when compressing data.
    header
    Include header information in compressed stream (should be False for streams in zip files).
    crc32
    Include CRC32 checksum in compressed stream (should be True for streams in zip files).
    See Also