| Overload | Description |
|---|---|
| ManagedLzmaDecompressorUnsafe Constructor() | LZMA constructor for decompression |
| ManagedLzmaDecompressorUnsafe Constructor(LZMAHeaderType) | LZMA constructor for decompression headerType indicates the type of header to read before the compressed data starts. Only use None if you intend to make your own format. In that case the SetLZMAProperties() method will be useful. The default value is LZMAHeaderType.Properties. |
| ManagedLzmaDecompressorUnsafe Constructor(Int64,Int64,LZMAHeaderType) | LZMA constructor for decompression compressedSize indicates the length of the compressed data to decompress. Use -1 to specify decompressing until the end of the stream is reached. The default value is -1. This value is useful when the compressed data does no contain the LZMA end-of-stream marker. uncompressedSize indicates the length of the uncompressed data to output. Use -1 to specify an unlimited size. The default value is -1. headerType indicates the type of header to read before the compressed data starts. Only use None if you intend to make your own format. In that case the SetLZMAProperties() method will be useful. The default value is LZMAHeaderType.Properties. |