ComponentOne Zip for UWP
C1.UWP.Zip Assembly / C1.C1Zip Namespace / C1ZStreamWriter Class / C1ZStreamWriter Constructor / C1ZStreamWriter Constructor(Stream,Boolean,Boolean)
Output stream that will contain the compressed 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,Boolean,Boolean)
    In This Topic
    Initializes a new instance of the C1ZStreamWriter class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal baseStream As System.IO.Stream, _
       ByVal header As System.Boolean, _
       ByVal crc32 As System.Boolean _
    )
    public C1ZStreamWriter( 
       System.IO.Stream baseStream,
       System.bool header,
       System.bool crc32
    )

    Parameters

    baseStream
    Output stream that will contain the compressed 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