Enum TaskState
Represents different states a (usually Web- or IO-related) task can be in.
public enum TaskState
- Extension Methods
Fields
Canceled = 7
The task was canceled by the user before completion.
Complete = 4
The task has been completed successfully.
Data = 3
Handling the actual data.
Header = 2
Handling the header.
IOError = 6
An error occurred while writing the file.
Ready = 0
The task is ready to begin.
Started = 1
The task has just been started.
WebError = 5
An error occurred during the task.