CoreTaskExtensions.Select Method |
Name | Description | |
---|---|---|
![]() ![]() | Select(Task, Action<Task>) |
Synchronously execute a continuation when a task completes successfully.
|
![]() ![]() | Select<TResult>(Task, Func<Task, TResult>) |
Synchronously execute a continuation when a task completes successfully.
|
![]() ![]() | Select<TSource>(Task<TSource>, Action<Task<TSource>>) |
Synchronously execute a continuation when a task completes successfully.
|
![]() ![]() | Select<TSource, TResult>(Task<TSource>, Func<Task<TSource>, TResult>) |
Synchronously execute a continuation when a task completes successfully.
|
![]() ![]() | Select(Task, Action<Task>, Boolean) |
Synchronously execute a continuation when a task completes. The supportsErrors
parameter specifies whether the continuation is executed if the antecedent task is faulted.
|
![]() ![]() | Select<TResult>(Task, Func<Task, TResult>, Boolean) |
Synchronously execute a continuation when a task completes. The supportsErrors
parameter specifies whether the continuation is executed if the antecedent task is faulted.
|
![]() ![]() | Select<TSource>(Task<TSource>, Action<Task<TSource>>, Boolean) |
Synchronously execute a continuation when a task completes. The supportsErrors
parameter specifies whether the continuation is executed if the antecedent task is faulted.
|
![]() ![]() | Select<TSource, TResult>(Task<TSource>, Func<Task<TSource>, TResult>, Boolean) |
Synchronously execute a continuation when a task completes. The supportsErrors
parameter specifies whether the continuation is executed if the antecedent task is faulted.
|