Brotli
Namespace: System.IO.Compression
Assembly: Wisej.Web.Ext.Brotli
Represents a Brotli stream for compression or decompression.
- C\\#
- VB.NET
public class BrotliStream : BrotliStream
Public Class BrotliStream
Inherits BrotliStream
Constructors
BrotliStream(stream, level, leaveOpen)
Initializes a new instance of the BrotliStream class using the specified stream and compression level, and optionally leaves the stream open.
| Name | Type | Description |
|---|---|---|
| stream | Stream | The stream to compress or decompress. |
| level | CompressionLevel | One of CompressionLevel values that indicates the level of compression to adopt. |
| leaveOpen | Boolean | true to leave the stream open after disposing the BrotliStream object; otherwise, false. |
BrotliStream(stream, level)
Initializes a new instance of the BrotliStream class using the specified stream and compression mode, and optionally leaves the stream open.
| Name | Type | Description |
|---|---|---|
| stream | Stream | The stream to compress or decompress. |
| level | CompressionLevel | One of CompressionLevel values that indicates the level of compression to adopt. |
BrotliStream(stream, mode, leaveOpen)
Initializes a new instance of the BrotliStream class using the specified stream and compression mode, and optionally leaves the stream open.
| Name | Type | Description |
|---|---|---|
| stream | Stream | The stream to compress or decompress. |
| mode | CompressionMode | One of the enumeration values that indicates whether to compress or decompress the stream. |
| leaveOpen | Boolean | true to leave the stream open after disposing the BrotliStream object; otherwise, false. |
BrotliStream(stream, mode)
Initializes a new instance of the BrotliStream class using the specified stream and compression mode.
| Name | Type | Description |
|---|---|---|
| stream | Stream | The stream to compress or decompress. |
| mode | CompressionMode | One of the enumeration values that indicates whether to compress or decompress the stream. |
Inherited
Properties
| Name | Description | From |
|---|---|---|
| CanRead | BrotliStream | |
| CanSeek | BrotliStream | |
| CanTimeout | Stream | |
| CanWrite | BrotliStream | |
| Length | BrotliStream | |
| Position | BrotliStream | |
| ReadTimeout | Stream | |
| WriteTimeout | Stream |