Bzip2SaveOptions.Bzip2SaveOptions
Contents
[
Hide
]Bzip2SaveOptions(int)
Initializes a new instance of the Bzip2SaveOptions class.
public Bzip2SaveOptions(int blockSize)
| Parameter | Type | Description |
|---|---|---|
| blockSize | Int32 | Block size in hundreds of kilobytes. |
Exceptions
| exception | condition |
|---|---|
| ArgumentOutOfRangeException | Block size is not in valid range. |
Examples
using (FileStream result = File.Open("archive.bz2"))
{
using (Bzip2Archive archive = new Bzip2Archive())
{
archive.SetSource("data.bin");
archive.Save(result, new Bzip2SaveOptions(9));
}
}
See Also
- class Bzip2SaveOptions
- namespace Aspose.Zip.Bzip2
- assembly Aspose.Zip
Bzip2SaveOptions()
Initializes a new instance of the Bzip2SaveOptions class with default block size, equals to 9 hundred of kilobytes.
public Bzip2SaveOptions()
Examples
using (FileStream result = File.Open("archive.bz2"))
{
using (Bzip2Archive archive = new Bzip2Archive())
{
archive.SetSource("data.bin");
archive.Save(result, new Bzip2SaveOptions());
}
}
See Also
- class Bzip2SaveOptions
- namespace Aspose.Zip.Bzip2
- assembly Aspose.Zip