Fires during file transfers to show current progress of the upload or download.
[Visual Basic]
Public ProgressEvent As WeOnlyDo.Client.SFTP.ProgressDelegate
[C#]
public ProgressDelegate ProgressEvent;
Remarks
This event can be used for monitoring file transfers. It is fired during file transfer started by GetFile or PutFile methods. It will be fired several times, depending on your network speed (thus length of packets sent/received), file size, or something else. There is no default rule on exact number of times it will be fired. Once transfer is finished, Position argument will have the same value as Total argument.
Also, once file transfer is finished Done event will be fired.