Class IsoLoadOptions

Class IsoLoadOptions

Le nom : Aspose.Zip.Iso Assemblée: Aspose.Zip.dll (25.5.0)

Options avec lesquelles Aspose.Zip.Iso.IsoArchive est chargé à partir d’un fichier comprimé.Contient un événement élevé sur l’extraction.

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.

 Français