Partager via


DispatcherOperation.Wait Méthode

Définition

Attend la fin de l'opération.

Surcharges

Wait()

Attend la fin de l’opération.

Wait(TimeSpan)

Attend que l'opération se termine pendant la durée spécifiée.

Wait()

Attend la fin de l’opération.

public:
 System::Windows::Threading::DispatcherOperationStatus Wait();
public System.Windows.Threading.DispatcherOperationStatus Wait ();
member this.Wait : unit -> System.Windows.Threading.DispatcherOperationStatus
Public Function Wait () As DispatcherOperationStatus

Retours

DispatcherOperationStatus

État de l'opération.

Exceptions

Status est égal à Executing. Cela peut se produire en attendant une opération qui est déjà en cours d'exécution sur le même thread.

Remarques

Pour obtenir la valeur de retour du délégué appelé, utilisez la Result propriété.

S’applique à

Wait(TimeSpan)

Attend que l'opération se termine pendant la durée spécifiée.

public:
 System::Windows::Threading::DispatcherOperationStatus Wait(TimeSpan timeout);
[System.Security.SecurityCritical]
public System.Windows.Threading.DispatcherOperationStatus Wait (TimeSpan timeout);
public System.Windows.Threading.DispatcherOperationStatus Wait (TimeSpan timeout);
[<System.Security.SecurityCritical>]
member this.Wait : TimeSpan -> System.Windows.Threading.DispatcherOperationStatus
member this.Wait : TimeSpan -> System.Windows.Threading.DispatcherOperationStatus
Public Function Wait (timeout As TimeSpan) As DispatcherOperationStatus

Paramètres

timeout
TimeSpan

Durée maximale à attendre.

Retours

DispatcherOperationStatus

État de l'opération.

Attributs

Exceptions

Status est égal à Executing. Cela peut se produire en attendant une opération qui est déjà en cours d'exécution sur le même thread.

Remarques

Pour obtenir la valeur de retour du délégué appelé, utilisez la Result propriété.

S’applique à