Class Bzip2LoadOptions
Class Bzip2LoadOptions
اسم الفضاء : Aspose.Zip.Bzip2 تجميع: Aspose.Zip.dll (25.5.0)
خيارات تحميل Aspose.Zip.Bzip2.Bzip2Archive. يحتوي على الأحداث التي تم رفعها على الاستخراج.
public class Bzip2LoadOptions
Inheritance
الأعضاء الموروثين
object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Constructors
Bzip2LoadOptions()
public Bzip2LoadOptions()
ExtractionProgressed
تم استدعاء الحدث عندما تم استخراج بعض بايتات.
public event EventHandler<progresseventargs> ExtractionProgressed
نوع الحدث
EventHandler <؛ ProgressEventArgs >
Examples
Bzip2LoadOptions loadOptions = new Bzip2LoadOptions();
loadOptions.ExtractionProgressed += (s, e) => { percent = (int) ((double)(100 * e.ProceededBytes) / originalFileLength); };
Remarks
إرسال الحدث هو Aspose.Zip.Bzip2.Bzip2أرشيف المثال الذي يتم استخراجها.The Aspose.Zip.ProgressEventArgs.ProceededBytes هو عدد البايتات بعد استخراجها.