Back to FlowSsh Documentation
TaskState Enumeration
[C/C++]
struct FlowSshC_TaskState { enum {
InProgress = 100,
Completed = 200,
Failed = 300 }; };
[C#]
public enum TaskState
{
InProgress = 100,
Completed = 200,
Failed = 300
}
Members
- InProgress: Operation in progress. The TaskSpecificStep of a progress handler might provide more information about the current step.
- Completed: Operation completed successfully. In [Cpp/Net] this state is not used explicitly; rather the corresponding OnSuccess handler is invoked.
- Failed: Operation failed. In [Cpp/Net] this state is not used explicitly; rather the corresponding OnError handler is invoked.
Remarks
This enumeration is used with progress handlers. It specifies the current state of a request.