This event is generated when a file is being transferred.
[Visual Basic] Public Event Progress As
ProgressEventHandler
[C#] public event ProgressEventHandler
Progress;
Explanation
The event handler receives arguments of type ProgressEventArgs
This event is generated when executing the DownloadFile, DownloadFileToByteArray, UploadByteArrayToFile, and UploadFile methods.
To cancel the process, set the Cancel property of the ProgressEventHandler to true.