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