Méthode | Description | |
---|---|---|
WaitAndUnwrapException ( Task task ) : void |
Waits for the task to complete, unwrapping any exceptions.
|
|
WaitAndUnwrapException ( Task task ) : TResult |
Waits for the task to complete, unwrapping any exceptions.
|
|
WaitCancellation ( CancellationToken token ) : Task |
Creates Task which will be completed on token cancel
|
|
WaitWithoutException ( Task task ) : void |
Waits for the task to complete, but does not raise task exceptions. The task exception (if any) is unobserved.
|
public static WaitAndUnwrapException ( Task task ) : void | ||
task | Task | The task. May not be |
Résultat | void |
public static WaitAndUnwrapException ( Task task ) : TResult | ||
task | Task | The task. May not be |
Résultat | TResult |
public static WaitCancellation ( CancellationToken token ) : Task | ||
token | CancellationToken | token watch on |
Résultat | Task |
public static WaitWithoutException ( Task task ) : void | ||
task | Task | The task. May not be |
Résultat | void |