Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

Session.ObjectSaving Event

Occurs when an object is about to be saved to a data store.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v19.2.dll

Declaration

public event ObjectManipulationEventHandler ObjectSaving

Event Data

The ObjectSaving 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

An object’s IXPObject.OnSaving event is raised after the ObjectSaving event.

An object can be saved to a data store using the XPBaseObject.Save method.

See Also