Creates a continuation that executes according to the specified System.Threading.Tasks.TaskContinuationOptions.
- continuationAction
- An action to run according to the specified continuationOptions. When run, the delegate will be passed the completed task as an argument.
- continuationOptions
- Options for when the continuation is scheduled and how it behaves. This includes criteria, such as TaskContinuationOptions.OnlyOnCanceled, as well as execution options, such as TaskContinuationOptions.ExecuteSynchronously.
A new continuation System.Threading.Tasks.Task.
The returned System.Threading.Tasks.Task will not be scheduled for execution until the current task has completed. If the continuation criteria specified through the continuationOptions parameter are not met, the continuation task will be canceled instead of scheduled.