IPendingWork.MustCommit(ICollection) 方法

定义

允许工作批次中的项断言它们是否必须立即提交。

public:
 bool MustCommit(System::Collections::ICollection ^ items);
public bool MustCommit (System.Collections.ICollection items);
abstract member MustCommit : System.Collections.ICollection -> bool
Public Function MustCommit (items As ICollection) As Boolean

参数

items
ICollection

工作项的 ICollection

返回

如果必须立即提交集合中的任一项,则为 true;否则为 false

注解

如果 MustCommit 返回 false,则可将工作推迟到一个将来的提交点。 如果必须提交任一项,则返回 true,并且将在当前提交点提交所有项。 有关可能的提交点的讨论,请参见 SqlWorkflowPersistenceService 类。

适用于