RunSynchronously Method (TaskScheduler)

Task Parallel System.Threading

Runs the Task synchronously on the scheduler provided.

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

Syntax

Visual Basic (Declaration)
Public Sub RunSynchronously ( _
	scheduler As TaskScheduler _
)
C#
public void RunSynchronously(
	TaskScheduler scheduler
)

Parameters

scheduler
Type: System.Threading.Tasks..::.TaskScheduler
The scheduler on which to attempt to run this task inline.

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.

If the target scheduler does not support running this Task on the current thread, the Task will be scheduled for execution on the scheduler, and the current thread will block until the Task has completed execution.

Exceptions

ExceptionCondition
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.
System..::.ArgumentNullExceptionThe scheduler parameter is null.

See Also