SevenZipLZMACompressionSettings

SevenZipLZMACompressionSettings class

Settings for LZMA compression method within 7z archive.

The SevenZipLZMACompressionSettings type exposes the following members:

Constructors

NameDescription
SevenZipLZMACompressionSettings()Initializes a new instance of the SevenZipLZMACompressionSettings class with default parameters.
SevenZipLZMACompressionSettings(dictionary_size, number_of_fast_bytes, literal_context_bits)Initializes a new instance of the SevenZipLZMACompressionSettings class with specified dictionary size, number of fast bytes and number of literal context bits.
SevenZipLZMACompressionSettings(dictionary_size)Initializes a new instance of the SevenZipLZMACompressionSettings class with specified dictionary size, number of fast bytes and number of literal context bits.

Properties

NameDescription
methodGets compression or decompression method.
dictionary_sizeDictionary (history buffer) size indicates how many bytes of the recently processed uncompressed data is kept in memory.
If not set, will be chosen accordingly to entry size. Must be between 4096 and 1073741824, or equal to zero for automatic detection based on entry size.
number_of_fast_bytesGets the number of bytes used for fast match searching in the LZMA algorithm.
literal_context_bitsGets the number of literal context bits.

See Also