Skip to main content
A newer version of this page is available. .

Session.ExplicitCommitTransactionAsync(CancellationToken) Method

Asynchronously completes an explicit transaction and commits changes made within the transaction.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v18.2.dll

Declaration

public Task ExplicitCommitTransactionAsync(
    CancellationToken cancellationToken = default(CancellationToken)
)

Optional Parameters

Name Type Default Description
cancellationToken CancellationToken *null*

A CancellationToken object that delivers a cancellation notice to the running operation.

Returns

Type Description
Task

A Task that commits changes made within an explicit transaction and completes the transaction.

Remarks

To start an explicit transaction, use the Session.ExplicitBeginTransaction method. To complete the explicit transaction asynchronously, call the ExplicitCommitTransactionAsync method. All data modifications made since the start of the transaction can be discarded via the Session.ExplicitRollbackTransaction method call.

See Also