xpo-devexpress-dot-xpo-dot-session-dc1038a9.md
Occurs after a transaction (a database level transaction in an explicit unit of work) has been started tracking changes made to persistent objects.
Namespace : DevExpress.Xpo
Assembly : DevExpress.Xpo.v25.2.dll
NuGet Package : DevExpress.Xpo
public event SessionManipulationEventHandler AfterBeginTrackingChanges
Public Event AfterBeginTrackingChanges As SessionManipulationEventHandler
The AfterBeginTrackingChanges event's data class is SessionManipulationEventArgs. The following properties provide information specific to this event:
| Property | Description |
|---|---|
| Session | Gets the session currently being processed. |
This event is raised after a transaction used to track changes made to persistent objects has been started via the Session.BeginTrackingChanges method call. The event parameter’s SessionManipulationEventArgs.Session property allows you to identify the currently used session.
When the transaction is about to be started, the Session.BeforeBeginTrackingChanges event is raised.
See Also