Starts the Task, scheduling it for execution to the current TaskScheduler.
Namespace:
System.Threading.Tasks
Assembly:
System.Threading (in System.Threading.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Sub Start |
C# |
---|
public void Start() |
Remarks
A task may only be started and run only once. Any attempts to schedule a task a second time
will result in an exception.
Exceptions
Exception | Condition |
---|---|
System..::.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. |
System..::.ObjectDisposedException | The Task instance has been disposed. |