Bzip2Archive.Extract

Bzip2Archive.Extract method

提供されたストリームにアーカイブを抽出します。

public void Extract(Stream destination)
パラメータタイプ説明
destinationStream宛先ストリーム。書き込み可能である必要があります。

例外

例外調子
ArgumentExceptiondestination書き込みをサポートしていません。

using (Bzip2Archive archive = new Bzip2Archive("archive.bz2"))
{
     archive.Extract(httpResponseStream);
}

関連項目