Class IsoLoadOptions
Class IsoLoadOptions
Namespace: Aspose.Zip.Iso
Assembly: Aspose.Zip.dll (25.5.0)
Options with which Aspose.Zip.Iso.IsoArchive is loaded from a compressed file. Contains event raised on extraction.
public class IsoLoadOptions
Inheritance
Inherited Members
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
Gets or sets the delegate invoked when some bytes have been extracted.
public EventHandler<progresseventargs> EntryExtractionProgressed { get; set; }
Property Value
EventHandler < ProgressEventArgs >
Examples
IsoArchive archive = new IsoArchive("archive.iso",
new IsoLoadOptions() { EntryExtractionProgressed = (s, e) => { int percent = (int)((100 * e.ProceededBytes) / length); } })
Remarks
Event sender is the Aspose.Zip.Iso.IsoEntry instance which extraction is progressed.