Session.ObjectSaved Event
Occurs after an object has been saved to a data store.
Namespace: DevExpress.Xpo
Assembly: DevExpress.Xpo.v24.1.dll
NuGet Packages: DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap, DevExpress.Xpo
NuGet Package: DevExpress.Xpo
Declaration
Event Data
The ObjectSaved event's data class is ObjectManipulationEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Object | Gets the object currently being processed. |
Session | Gets the session whose persistent object is currently being processed. |
Remarks
The ObjectSaved event is raised after an object’s IXPObject.OnSaved event.
An object can be saved to a data store using the XPBaseObject.Save method.
See Also