ZArchiveLoadOptions.ExtractionProgressed

ZArchiveLoadOptions.ExtractionProgressed event

Gets or sets the delegate invoked when some bytes have been extracted.

public event EventHandler<ProgressEventArgs> ExtractionProgressed;

Remarks

Event sender is the ZArchive instance which extraction is progressed.

Examples

ZArchive archive = new ZArchive("archive.z", 
new ZArchiveLoadOptions() { EntryExtractionProgressed = (s, e) => { int percent = (int)((100 * e.ProceededBytes) / length); } })

See Also