طريقة System::Threading::Tasks::Task::ContinueWith
محتويات
[
يخفي
]Task::ContinueWith(const Action<TaskPtr>&) method
ينشئ متابعة تُنفّذ عندما تُكمل المهمة.
TaskPtr System::Threading::Tasks::Task::ContinueWith(const Action<TaskPtr> &continuationAction)
| معامل | نوع | الوصف |
|---|---|---|
| continuationAction | const Action<TaskPtr>& | Action للتنفيذ عندما تكتمل هذه المهمة |
ReturnValue
TaskPtr A new task representing the continuation
انظر أيضًا
- Typedef TaskPtr
- Typedef Action
- Class Task
- Namespace System::Threading::Tasks
- Library Aspose.Font for C++
Task::ContinueWith(const Func<TaskPtr, TResult>&) method
ينشئ متابعة تُنفّذ عندما تُكمل المهمة.
template<typename TResult> RTaskPtr<TResult> System::Threading::Tasks::Task::ContinueWith(const Func<TaskPtr, TResult> &continuationFunction)
| معامل | الوصف |
|---|---|
| TResult | نوع من نتيجة المهمة |
| معامل | نوع | الوصف |
|---|---|---|
| continuationFunction | const Func<TaskPtr, TResult>& | دالة للحصول على النتيجة عندما تكتمل هذه المهمة |
ReturnValue
RTaskPtr A new task representing the continuation
انظر أيضًا
- Typedef RTaskPtr
- Class Func
- Typedef TaskPtr
- Class Task
- Namespace System::Threading::Tasks
- Library Aspose.Font for C++