CoreTaskExtensionsSelectTSource Method (TaskTSource, ActionTaskTSource, Boolean) |
Namespace: Rackspace.Threading
public static Task Select<TSource>( this Task<TSource> task, Action<Task<TSource>> continuationAction, bool supportsErrors )
Exception | Condition |
---|---|
ArgumentNullException |
If task is . -or- If continuationAction is . |
This code implements support for the following construct without requiring the use of /.
try { TSource source = await task.ConfigureAwait(false); } catch { if (!supportsErrors) throw; } continuationAction(task);
If the antecedent task is canceled, or faulted with supportsErrors set to , the status of the antecedent is directly applied to the task returned by this method; it is not wrapped in an additional AggregateException.
Notes to Callers |
---|
Since the continuation is executed synchronously, this method should only be used for lightweight continuation actions. For non-trivial continuation actions, use ThenTSource(TaskTSource, FuncTaskTSource, Task, Boolean) instead. |