Task.Start Method (TaskScheduler)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Starts the Task, scheduling it for execution to the specified TaskScheduler.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- scheduler
- Type: System.Threading.Tasks.TaskScheduler
The TaskScheduler with which to associate and execute this task.
| Exception | Condition |
|---|---|
| ObjectDisposedException | The Task instance has been disposed. |
| ArgumentNullException | The scheduler argument is null. |
| InvalidOperationException | The Task is not in a valid state to be started. It may have already been started, executed, or canceled, or it may have been created in a manner that doesn't support direct scheduling. |
Show: