This documentation is archived and is not being maintained.
Task::ContinueWith Method (Action<Task>)
Visual Studio 2010
Creates a continuation that executes asynchronously when the target Task completes.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- continuationAction
- Type: System::Action<Task>
An action to run when the Task completes. When run, the delegate will be passed the completed task as an argument.
| Exception | Condition |
|---|---|
| ObjectDisposedException | The CancellationTokenSource that created cancellationToken has already been disposed. |
| ArgumentNullException | The continuationAction argument is nullptr. |
The returned Task will not be scheduled for execution until the current task has completed, whether it completes due to running to completion successfully, faulting due to an unhandled exception, or exiting out early due to being canceled.
See Continuation Tasks for a code example.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: