ProgressEventHandler Delegate
[C#]
public delegate void ProgressEventHandler(
object sender,
uint taskSpecificStep);
Parameters
- sender: The source of the event.
- taskSpecificStep: May be a ConnectStep or ClientSftpChannelOpenStep enumeration. These steps are registered right before they are to be processed.
Remarks
This delegate is only invoked for [Client]Connect and [ClientSftpChannel]Open requests. These are the only requests that report intermediate progress steps.