OperationContext.SetTransactionComplete Method

Definition

Commits the currently executing transaction.

public:
 void SetTransactionComplete();
public void SetTransactionComplete ();
member this.SetTransactionComplete : unit -> unit
Public Sub SetTransactionComplete ()

Exceptions

There is no transaction in the context.

Remarks

This is only useful in operations that set OperationBehaviorAttribute.TransactionAutoComplete to false. Typically, services do this on some but not all operations. When OperationBehaviorAttribute.TransactionAutoComplete is false the transaction completes automatically. Use SetTransactionComplete in cases where it is not possible to determine at design-time whether an operation needs to complete the transaction.

Applies to