Bzip2CompressionSettings

Bzip2CompressionSettings class

Settings for Bzip2 compression method.

public class Bzip2CompressionSettings : CompressionSettings

Constructors

NameDescription
Bzip2CompressionSettings()Initializes a new instance of the Bzip2CompressionSettings class with default block size, equals to 9 hundred of kilobytes.
Bzip2CompressionSettings(int)Initializes a new instance of the Bzip2CompressionSettings class.

Properties

NameDescription
BlockSize { get; }Block size in hundreds of kilobytes.

Remarks

bzip2 compresses files using the Burrows-Wheeler block sorting text compression algorithm, and Huffman coding. See more: https://en.wikipedia.org/wiki/Bzip2

See Also