| Overload | Description |
|---|---|
| ManagedLzmaCompressorUnsafe Constructor() | This constructor sets the LZMA options to the CompressionLevel.Normal template and writes a zip-compatible header |
| ManagedLzmaCompressorUnsafe Constructor(CompressionLevel) | This constructor sets the LZMA options to the specified CompressionLevel template and writes a zip-compatible header. |
| ManagedLzmaCompressorUnsafe Constructor(CompressionLevel,LZMAHeaderType) | This constructor sets the LZMA options to the specified CompressionLevel template and writes a zip-compatible header. headerType indicates the type of header to use before the compressed data. Only use None if you intend to make your own format. In that case the WriteLZMAProperties() will be useful. |
| ManagedLzmaCompressorUnsafe Constructor(LZMAOptions,LZMAHeaderType) | The options can be changed freely until the Compress method is called for the first time. After that, changing the options will have no effect. options can be null. Options with the CompressionLevel.Normal template will be used. headerType indicates the type of header to use before the compressed data. Only use None if you intend to make your own format. In that case the WriteLZMAProperties() will be useful. |