Class Bzip2LoadOptions

Class Bzip2LoadOptions

اسم الفضاء : Aspose.Zip.Bzip2 تجميع: Aspose.Zip.dll (25.5.0)

خيارات تحميل Aspose.Zip.Bzip2.Bzip2Archive. يحتوي على الأحداث التي تم رفعها على الاستخراج.

public class Bzip2LoadOptions

Inheritance

object Bzip2LoadOptions

الأعضاء الموروثين

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 &lt؛ ProgressEventArgs >

Examples

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

Remarks

إرسال الحدث هو Aspose.Zip.Bzip2.Bzip2أرشيف المثال الذي يتم استخراجها.The Aspose.Zip.ProgressEventArgs.ProceededBytes هو عدد البايتات بعد استخراجها.

 عربي