ComponentOne Zip for UWP
C1.UWP.Zip Assembly / C1.C1Zip Namespace / C1ZStreamWriter Class / C1ZStreamWriter Constructor / C1ZStreamWriter Constructor(Stream,CompressionLevelEnum,Boolean)
Output stream that will contain the compressed data.
Compression level to use when compressing data.
Specifies whether the compressed stream should be compatible with zip files.

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

    Parameters

    baseStream
    Output stream that will contain the compressed data.
    level
    Compression level to use when compressing data.
    zip
    Specifies whether the compressed stream should be compatible with zip files.
    See Also