TaskExtensions.IsDispatcherOperationTask(Task) Method

Definition

Returns a value that indicates whether this Task is associated with a DispatcherOperation.

public:
[System::Runtime::CompilerServices::Extension]
 static bool IsDispatcherOperationTask(System::Threading::Tasks::Task ^ this);
public static bool IsDispatcherOperationTask (this System.Threading.Tasks.Task this);
static member IsDispatcherOperationTask :  -> bool
<Extension()>
Public Function IsDispatcherOperationTask (this As Task) As Boolean

Parameters

this
Task

The Task to check.

Returns

The status of the underlying DispatcherOperation.

Remarks

true if the Task is associated with a DispatcherOperation; otherwise, false.

Applies to