Class IsoLoadOptions

Class IsoLoadOptions

İsim alanı : Aspose.Zip.Iso Toplama: Aspose.Zip.dll (25.5.0)

Aspose.Zip.Iso.İsoArchive bir sıkıştırılmış dosyadan yüklendiği seçenekler.

public class IsoLoadOptions

Inheritance

object IsoLoadOptions

mirasçı üyeleri

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

Constructors

IsoLoadOptions()

public IsoLoadOptions()

Properties

EntryExtractionProgressed

Bazı baytlar çıkarıldığında çağrılan delegat alır veya yerleştirir.

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

Mülkiyet Değer

EventHandler &lt için; ProgressEventArgs >

Examples

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

Remarks

Etkinlik göndericisi Aspose.Zip.Iso.IsoEntry örneğidir.

 Türkçe