Task.RunSynchronously Method (TaskScheduler)

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Runs the Task synchronously on the TaskScheduler provided.

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

Syntax

'Declaration
Public Sub RunSynchronously ( _
    scheduler As TaskScheduler _
)
public void RunSynchronously(
    TaskScheduler scheduler
)

Parameters

Exceptions

Exception Condition
ObjectDisposedException

The Task instance has been disposed.

ArgumentNullException

The scheduler parameter 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.

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.

Version Information

Silverlight

Supported in: 5

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.