Click or drag to resize
CoreTaskExtensions.Select Method
Overload List
  NameDescription
Public methodStatic memberSelect(Task, Action<Task>)
Synchronously execute a continuation when a task completes successfully.
Public methodStatic memberSelect<TResult>(Task, Func<Task, TResult>)
Synchronously execute a continuation when a task completes successfully.
Public methodStatic memberSelect<TSource>(Task<TSource>, Action<Task<TSource>>)
Synchronously execute a continuation when a task completes successfully.
Public methodStatic memberSelect<TSource, TResult>(Task<TSource>, Func<Task<TSource>, TResult>)
Synchronously execute a continuation when a task completes successfully.
Public methodStatic memberSelect(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.
Public methodStatic memberSelect<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.
Public methodStatic memberSelect<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.
Public methodStatic memberSelect<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.
Top
See Also