Class Bzip2LoadOptions
Class Bzip2LoadOptions
Pôvodný názov: Aspose.Zip.Bzip2 Zhromaždenie: Aspose.Zip.dll (25.5.0)
Možnosti na stiahnutie Aspose.Zip.Bzip2.Bzip2Archive. obsahuje udalosti vyzdvihnuté na extrakcii.
public class Bzip2LoadOptions
Inheritance
Z dedičných č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
Akcia bola povolaná, keď boli niektoré bajty vytiahnuté.
public event EventHandler<progresseventargs> ExtractionProgressed
Typ udalosti
EventHandler < ProgressEventArgs >
Examples
Bzip2LoadOptions loadOptions = new Bzip2LoadOptions();
loadOptions.ExtractionProgressed += (s, e) => { percent = (int) ((double)(100 * e.ProceededBytes) / originalFileLength); };
Remarks
Odosielateľ udalostí je Aspose.Zip.Bzip2.Bzip2Archívna inštancia, ktorej extrakcia je pokročilá. Aspose.Zip.ProgressEventArgs.ProceededBytes je počet bajtov po extrakcii.