TaskExtensions.DispatcherOperationWait Método

Definición

Espera a que se complete el DispatcherOperation subyacente.

Sobrecargas

DispatcherOperationWait(Task)

Espera indefinidamente a que se complete la DispatcherOperation subyacente.

DispatcherOperationWait(Task, TimeSpan)

Espera la cantidad de tiempo especificada para que se complete el DispatcherOperation subyacente.

DispatcherOperationWait(Task)

Espera indefinidamente a que se complete la DispatcherOperation subyacente.

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

Parámetros

this
Task

Task asociado a la DispatcherOperation.

Devoluciones

Estado del DispatcherOperation subyacente.

Excepciones

Comentarios

Llame al IsDispatcherOperationTask método para comprobar si Task está asociado a un DispatcherOperation antes de llamar a este método.

Se aplica a

DispatcherOperationWait(Task, TimeSpan)

Espera la cantidad de tiempo especificada para que se complete el DispatcherOperation subyacente.

public:
[System::Runtime::CompilerServices::Extension]
 static System::Windows::Threading::DispatcherOperationStatus DispatcherOperationWait(System::Threading::Tasks::Task ^ this, TimeSpan timeout);
public static System.Windows.Threading.DispatcherOperationStatus DispatcherOperationWait (this System.Threading.Tasks.Task this, TimeSpan timeout);
static member DispatcherOperationWait : TimeSpan -> System.Windows.Threading.DispatcherOperationStatus
<Extension()>
Public Function DispatcherOperationWait (this As Task, timeout As TimeSpan) As DispatcherOperationStatus

Parámetros

this
Task

Task asociado a la DispatcherOperation.

timeout
TimeSpan

Cantidad de tiempo que va a esperar.

Devoluciones

Estado del DispatcherOperation subyacente.

Excepciones

Comentarios

Llame al IsDispatcherOperationTask método para comprobar si Task está asociado a un DispatcherOperation antes de llamar a este método.

Se aplica a