Bridge

Task..::..Start Method

Starts the Task, scheduling it for execution to the current TaskScheduler.

Namespace:  System.Threading.Tasks
Assembly:  Bridge (in Bridge.dll)

Syntax


public void Start()
Public Sub Start
public:
void Start()

Exceptions


ExceptionCondition
ObjectDisposedExceptionThe Task instance has been disposed.
System..::..InvalidOperationExceptionThe 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.