Skip to main content
.NET 8.0+

Session.ObjectDeleted Event

Occurs after an object has been deleted.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v24.2.dll

NuGet Package: DevExpress.Xpo

#Declaration

public event ObjectManipulationEventHandler ObjectDeleted

#Event Data

The ObjectDeleted 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 ObjectDeleted event is raised after an object’s IXPObject.OnDeleted event.

An object can be deleted using the XPBaseObject.Delete method.

See Also