Class IsoLoadOptions

Class IsoLoadOptions

Namespace: Aspose.Zip.Iso
Assembly: Aspose.Zip.dll (25.1.0)

Opsi yang digunakan untuk memuat Aspose.Zip.Iso.IsoArchive dari file terkompresi. Berisi event yang dipicu saat ekstraksi.

public class IsoLoadOptions

Pewarisan

objectIsoLoadOptions

Anggota yang Dwarisi

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

Konstruktor

IsoLoadOptions()

public IsoLoadOptions()

Properti

EntryExtractionProgressed

Mendapatkan atau mengatur delegate yang dipanggil saat beberapa byte telah diekstraksi.

public EventHandler<progresseventargs> EntryExtractionProgressed { get; set; }

Nilai Properti

EventHandler<ProgressEventArgs&gt;

Contoh

IsoArchive archive = new IsoArchive("archive.iso", 
new IsoLoadOptions() { EntryExtractionProgressed = (s, e) =&gt; { int percent = (int)((100 * e.ProceededBytes) / length); } })

Keterangan

Pengirim event adalah instance Aspose.Zip.Iso.IsoEntry yang ekstraksinya sedang berlangsung.

 Indonesia