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

Session.AfterCommitTransaction Event

Occurs after a transaction has been completed via the COMMIT operation.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v18.2.dll

Declaration

public event SessionManipulationEventHandler AfterCommitTransaction

Event Data

The AfterCommitTransaction event's data class is SessionManipulationEventArgs. The following properties provide information specific to this event:

Property Description
Session Gets the session currently being processed.

Remarks

The AfterCommitTransaction event is raised after a transaction has been completed via the COMMIT operation (Session.CommitTransaction, Session.CommitTransactionAsync, ExplicitUnitOfWork.CommitTransaction, or ExplicitUnitOfWork.CommitTransactionAsync). The event parameter’s SessionManipulationEventArgs.Session property allows the processed session to be identified.

When a transaction is about to be completed via the COMMIT operation, the Session.BeforeCommitTransaction event is raised.

See Also