ContinueWith Method

Task Parallel System.Threading

Overload List

  NameDescription
ContinueWith(Action<(Of <(Task>)>))
Creates a continuation that executes when the target Task completes.
ContinueWith<(Of <(TResult>)>)(Func<(Of <(Task, TResult>)>))
Creates a continuation that executes when the target Task completes.
ContinueWith(Action<(Of <(Task>)>), CancellationToken)
Creates a continuation that executes when the target Task completes.
ContinueWith(Action<(Of <(Task>)>), TaskContinuationOptions)
Creates a continuation that executes when the target Task completes.
ContinueWith(Action<(Of <(Task>)>), TaskScheduler)
Creates a continuation that executes when the target Task completes.
ContinueWith<(Of <(TResult>)>)(Func<(Of <(Task, TResult>)>), CancellationToken)
Creates a continuation that executes when the target Task completes.
ContinueWith<(Of <(TResult>)>)(Func<(Of <(Task, TResult>)>), TaskContinuationOptions)
Creates a continuation that executes when the target Task completes.
ContinueWith<(Of <(TResult>)>)(Func<(Of <(Task, TResult>)>), TaskScheduler)
Creates a continuation that executes when the target Task completes.
ContinueWith(Action<(Of <(Task>)>), CancellationToken, TaskContinuationOptions, TaskScheduler)
Creates a continuation that executes when the target Task completes.
ContinueWith<(Of <(TResult>)>)(Func<(Of <(Task, TResult>)>), CancellationToken, TaskContinuationOptions, TaskScheduler)
Creates a continuation that executes when the target Task completes.

See Also