Class IsoLoadOptions

Class IsoLoadOptions

Nom dels espais: Aspose.Zip.Iso Assemblea: Aspose.Zip.dll (25.5.0)

Opcions amb les quals Aspose.Zip.Iso.IsArchive es carrega d’un fitxer comprès.

public class IsoLoadOptions

Inheritance

object IsoLoadOptions

Membres heretats

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

Obté o posa el delegat invocat quan s’han extret alguns bytes.

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

Valor de la propietat

EventHandler < ProgressEventArgs >

Examples

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

Remarks

El missatger d’esdeveniments és l’instància Aspose.Zip.Iso.IsoEntry la extracció és progressiva.

 Català