Progress Event
Fired as progress is made.
Syntax
[VB.NET] Public Event OnProgress As OnProgressHandler
[C#] public event OnProgressHandler OnProgress; public delegate void OnProgressHandler(object sender, PpopProgressEventArgs e); class PpopProgressEventArgs : EventArgs { long BytesProcessed {get;} int PercentProcessed {get;} }
Remarks
This event is fired automatically as data is processed by the component.
The PercentProcessed parameter indicates the current status of the operation.
The BytesProcessed parameter holds the total number of bytes processed so far.