IPendingWork.Complete(Boolean, ICollection) Method

Definition

Called when the transaction has completed.

public:
 void Complete(bool succeeded, System::Collections::ICollection ^ items);
public void Complete (bool succeeded, System.Collections.ICollection items);
abstract member Complete : bool * System.Collections.ICollection -> unit
Public Sub Complete (succeeded As Boolean, items As ICollection)

Parameters

succeeded
Boolean

true if the transaction succeeded; otherwise, false.

items
ICollection

An ICollection of work items.

Remarks

If succeeded is true, the transaction succeeded and any resources used by the work batch may be released. If succeeded is false, the transaction failed. Depending on your implementation, you can perform any appropriate roll back on the work in the work batch when the transaction fails.

Applies to