Class Bzip2LoadOptions

Class Bzip2LoadOptions

Název místa: Aspose.Zip.Bzip2 Sbírka: Aspose.Zip.dll (25.5.0)

Možnosti pro stahování Aspose.Zip.Bzip2.Bzip2Archive. Obsahuje událost nahranou na extrakci.

public class Bzip2LoadOptions

Inheritance

object Bzip2LoadOptions

Dědiční členové

object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()

Constructors

Bzip2LoadOptions()

public Bzip2LoadOptions()

ExtractionProgressed

Událost vyvolala pozvání, když některé bajty byly extrahovány.

public event EventHandler<progresseventargs> ExtractionProgressed

Typ události

EventHandler < ProgressEventArgs >

Examples

Bzip2LoadOptions loadOptions = new Bzip2LoadOptions(); 
loadOptions.ExtractionProgressed += (s, e) =&gt; { percent = (int) ((double)(100 * e.ProceededBytes) / originalFileLength); };

Remarks

Odesílatel událostí je Aspose.Zip.Bzip2.Bzip2Archivní příklad, který extrakce je pokročil. Aspose.Zip.ProgressEventArgs.ProceededBytes je počet bajtů po extrakci.

 Čeština