CoreTaskExtensionsSelectTSource Method (TaskTSource, ActionTaskTSource) |
Namespace: Rackspace.Threading
public static Task Select<TSource>( this Task<TSource> task, Action<Task<TSource>> continuationAction )
Exception | Condition |
---|---|
ArgumentNullException |
If task is . -or- If continuationAction is . |
This code implements support for the following construct without requiring the use of /.
TSource source = await task.ConfigureAwait(false); continuationAction(task);
If the antecedent task is canceled or faulted, 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) instead. |