'Declaration Public Function New( _ ByVal inner As Stream, _ ByVal level As CompressionLevel, _ ByVal readHeader As Boolean _ )
'Usage Dim inner As Stream Dim level As CompressionLevel Dim readHeader As Boolean Dim instance As New GZipCompressedStream(inner, level, readHeader)
public GZipCompressedStream( Stream inner, CompressionLevel level, bool readHeader )
Parameters
- inner
- The stream to write to and read from.
- level
- A Xceed.Compression.CompressionLevel value representing the compression level to use.
- readHeader
- If true, this stream can only be read from and the header will be read immediately. If false, this stream can be used for reading or writing but no header is read until a call to FormattedCompressedStream.Write or FormattedCompressedStream.Read.