xpo-devexpress-dot-xpo-dot-session-d94614a4.md
Occurs after a transaction has been started via the BEGIN operation.
Namespace : DevExpress.Xpo
Assembly : DevExpress.Xpo.v25.2.dll
NuGet Package : DevExpress.Xpo
public event SessionManipulationEventHandler AfterBeginTransaction
Public Event AfterBeginTransaction As SessionManipulationEventHandler
The AfterBeginTransaction event's data class is SessionManipulationEventArgs. The following properties provide information specific to this event:
| Property | Description |
|---|---|
| Session | Gets the session currently being processed. |
The AfterBeginTransaction event is raised after a transaction has been started via the BEGIN operation (Session.BeginTransaction or ExplicitUnitOfWork.BeginTransaction). The event parameter’s SessionManipulationEventArgs.Session property allows the processed session to be identified.
When a transaction is about to be started via the BEGIN operation, the Session.BeforeBeginTransaction event is raised.
See Also