TaskExtensions Class

Definition

Provides a set of static methods that extend the Task class.

public ref class TaskExtensions abstract sealed
public static class TaskExtensions
type TaskExtensions = class
Public Module TaskExtensions
Inheritance
TaskExtensions

Remarks

The methods in this class are defined as extension methods that extend the Task class. This means that they can be called like an instance method on any Task object. The methods in this class operate on Task objects that are associated with a Dispatcher object.

Methods

DispatcherOperationWait(Task)

Waits indefinitely for the underlying DispatcherOperation to complete.

DispatcherOperationWait(Task, TimeSpan)

Waits for the specified amount of time for the underlying DispatcherOperation to complete.

IsDispatcherOperationTask(Task)

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

Applies to