Bzip2CompressionSettings Class

Settings for Bzip2 compression method.
Inheritance Hierarchy

Namespace:  Aspose.Zip.Saving
Assembly:  Aspose.Zip (in Aspose.Zip.dll) Version: 20.3
Syntax
public class Bzip2CompressionSettings : CompressionSettings

The Bzip2CompressionSettings type exposes the following members.

Constructors
  NameDescription
Public methodCode exampleBzip2CompressionSettings
Initializes a new instance of the Bzip2CompressionSettings class with default block size.
Public methodCode exampleBzip2CompressionSettings(Int32)
Initializes a new instance of the Bzip2CompressionSettings class.
Properties
  NameDescription
Public propertyBlockSize
Block size in hundreds of kilobytes.
Methods
  NameDescription
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodToString (Inherited from Object.)
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