System::Threading::Tasks::Task::ContinueWith 方法

Task::ContinueWith(const Action<TaskPtr>&) method

创建一个在任务完成时执行的延续。

TaskPtr System::Threading::Tasks::Task::ContinueWith(const Action<TaskPtr> &continuationAction)
参数类型描述
continuationActionconst Action<TaskPtr>&在此任务完成时执行的 Action

ReturnValue

TaskPtr A new task representing the continuation

另见

Task::ContinueWith(const Func<TaskPtr, TResult>&) method

创建一个在任务完成时执行的延续。

template<typename TResult> RTaskPtr<TResult> System::Threading::Tasks::Task::ContinueWith(const Func<TaskPtr, TResult> &continuationFunction)
参数描述
TResult任务结果的类型
参数类型描述
continuationFunctionconst Func<TaskPtr, TResult>&当此任务完成时获取结果的函数

ReturnValue

RTaskPtr A new task representing the continuation

另见