通过


SqlWorkflowPersistenceService.IPendingWork.Complete 方法

定义

完成工作批处理并释放任何资源。

 virtual void System.Workflow.Runtime.IPendingWork.Complete(bool succeeded, System::Collections::ICollection ^ items) = System::Workflow::Runtime::IPendingWork::Complete;
void IPendingWork.Complete(bool succeeded, System.Collections.ICollection items);
abstract member System.Workflow.Runtime.IPendingWork.Complete : bool * System.Collections.ICollection -> unit
override this.System.Workflow.Runtime.IPendingWork.Complete : bool * System.Collections.ICollection -> unit
Sub Complete (succeeded As Boolean, items As ICollection) Implements IPendingWork.Complete

参数

succeeded
Boolean

true 如果提交成功,则为否则,为 false.

items
ICollection

序列化状态对象的一个 ICollection

实现

注解

在现装实现 SqlWorkflowPersistenceService中, IPendingWork.Complete 是一种 no-op。 如果继承并扩展类 SqlWorkflowPersistenceService ,则可以用于 IPendingWork.Complete 执行实现所要执行的任何操作 items

适用于