Class IsoLoadOptions

Class IsoLoadOptions

Namn på plats: Aspose.Zip.Iso Sammanfattning: Aspose.Zip.dll (25.5.0)

Alternativ med vilka Aspose.Zip.Iso.ISOArchive laddas från en komprimerad fil. Innehåller händelse upptagna på extraction.

public class IsoLoadOptions

Inheritance

object IsoLoadOptions

Arvsmedlemmar

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

Få eller sätta delegaten inbjuds när vissa byter har tagits ut.

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

Fastighetsvärde

EventHandler ochlt; ProgressEventArgs >

Examples

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

Remarks

Event-sändaren är Aspose.Zip.Iso.IsoEntry-instans vars utvinning utvecklas.

 Svenska