Bzip2Archive.Extract

Bzip2Archive.Extract method

Pakt het archief uit naar de geleverde stream.

public void Extract(Stream destination)
ParameterTypeBeschrijving
destinationStreamBestemmingsstroom. Moet beschrijfbaar zijn.

Uitzonderingen

uitzonderingvoorwaarde
ArgumentExceptiondestination ondersteunt schrijven niet.

Voorbeelden

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

Zie ook