Class IsoLoadOptions

Class IsoLoadOptions

Il nome: Aspose.Zip.Iso Assemblea: Aspose.Zip.dll (25.5.0)

Opzioni con le quali Aspose.Zip.Iso.isoArchive viene caricato da un file compreso.

public class IsoLoadOptions

Inheritance

object IsoLoadOptions

I membri ereditari

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

Riceve o mette il delegato invocato quando alcuni byti sono stati estratti.

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

Valore di proprietà

EventHandler di < ProgressEventArgs >

Examples

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

Remarks

Il messaggero di eventi è l’esempio Aspose.Zip.Iso.IsoEntry la cui estrazione è avanzata.

 Italiano