IObjectSpace.Disposed Event
In This Article
Occurs after an Object Space has been disposed of.
Namespace: DevExpress.ExpressApp
Assembly: DevExpress.ExpressApp.v24.2.dll
NuGet Package: DevExpress.ExpressApp
#Declaration
event EventHandler Disposed
#Event Data
The Disposed event's data class is EventArgs.
#Remarks
If you implement the IObjectSpace interface in the BaseObjectSpace class’ descendant, you don’t have to raise this event, since it’s raised by the BaseObjectSpace.Dispose method. This method releases all resources allocated by the ObjectSpace and speeds up system performance. Handle this event to release custom resources before the current Object Space is disposed of.
See Also