Dart.Ssh Namespace > Sftp Class : Progress Event |
'Declaration Public Event Progress As Sftp.ProgressEventHandler
'Usage Dim instance As Sftp Dim handler As Sftp.ProgressEventHandler AddHandler instance.Progress, handler
public event Sftp.ProgressEventHandler Progress
public: __event Sftp.ProgressEventHandler* Progress
public: event Sftp.ProgressEventHandler^ Progress
The event handler receives an argument of type ProgressEventArgs containing data related to this event. The following ProgressEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Item | Gets progress for the current file or directory in the copy operation. |
List | Gets progress for the entire copy operation. |
The BlockSize property controls how often this event is raised.
Note: updating the UI from this event can negatively impact transfer speed.
See the ComponentBase.SynchronizingObject property for important information on updating UI controls from within this event.