Skip to main content
.NET Framework 4.6.2+

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

IObjectSpace.Disposed Event

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