IsoLoadOptions.EntryExtractionProgressed
IsoLoadOptions.EntryExtractionProgressed property
Gets or sets the delegate invoked when some bytes have been extracted.
public EventHandler<ProgressEventArgs> EntryExtractionProgressed { get; set; }
Remarks
Event sender is the IsoEntry instance which extraction is progressed.
Examples
IsoArchive archive = new IsoArchive("archive.iso", 
new IsoLoadOptions() { EntryExtractionProgressed = (s, e) => { int percent = (int)((100 * e.ProceededBytes) / length); } })                 
See Also
- class ProgressEventArgs
 - class IsoLoadOptions
 - namespace Aspose.Zip.Iso
 - assembly Aspose.Zip