Bzip2SaveOptions.Bzip2SaveOptions

Bzip2SaveOptions(int)

의 새 인스턴스를 초기화합니다.Bzip2SaveOptions 클래스.

public Bzip2SaveOptions(int blockSize)
모수유형설명
blockSizeInt32수백 킬로바이트 단위의 블록 크기.

예외

예외상태
ArgumentOutOfRangeException블록 크기가 유효한 범위에 있지 않습니다.

using (FileStream result = File.Open("archive.bz2"))
{
    using (Bzip2Archive archive = new Bzip2Archive())
    {
        archive.SetSource("data.bin");
        archive.Save(result, new Bzip2SaveOptions(9));
    }
}

또한보십시오


Bzip2SaveOptions()

의 새 인스턴스를 초기화합니다.Bzip2SaveOptions 기본 블록 크기가 있는 클래스는 900킬로바이트입니다.

public Bzip2SaveOptions()

using (FileStream result = File.Open("archive.bz2"))
{
    using (Bzip2Archive archive = new Bzip2Archive())
    {
        archive.SetSource("data.bin");
        archive.Save(result, new Bzip2SaveOptions());
    }
}

또한보십시오