Class IsoLoadOptions

Class IsoLoadOptions

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

Opzioni con cui Aspose.Zip.Iso.IsoArchive viene caricato da un file compresso. Contiene eventi sollevati durante l’estrazione.

public class IsoLoadOptions

Ereditarietà

objectIsoLoadOptions

Membri Ereditati

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

Costruttori

IsoLoadOptions()

public IsoLoadOptions()

Proprietà

EntryExtractionProgressed

Ottiene o imposta il delegato invocato quando alcuni byte sono stati estratti.

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

Valore della Proprietà

EventHandler<ProgressEventArgs&gt;

Esempi

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

Osservazioni

Il mittente dell’evento è l’istanza Aspose.Zip.Iso.IsoEntry di cui l’estrazione è progredita.

 Italiano