expressappframework-devexpress-dot-expressapp-dot-compositeobjectspace-709c6129.md
Specifies whether Object Spaces dispose of their inner Object Spaces from the AdditionalObjectSpaces collection when they dispose of themselves. This field affects all Object Spaces in your application if you do not specify the AutoDisposeAdditionalObjectSpaces property for a particular Object Space.
Namespace : DevExpress.ExpressApp
Assembly : DevExpress.ExpressApp.v25.2.dll
NuGet Package : DevExpress.ExpressApp
public static bool AutoDisposeAdditionalObjectSpacesByDefault
Public Shared AutoDisposeAdditionalObjectSpacesByDefault As Boolean
| Type | Description |
|---|---|
| Boolean |
true , if Object Spaces dispose of their inner Object Spaces from the AdditionalObjectSpaces collection when they dispose of themselves; otherwise, false.
|
Dispose of Object Spaces that you stopped using because undisposed Object Spaces may lead to memory leaks. Set this property to true to automatically dispose of all additional Object Spaces simultaneously with the parent Object Space.
The following example shows how to specify this static field for a WinForms application.
using DevExpress.ExpressApp;
using DevExpress.ExpressApp.Win;
// ...
public partial class MySolutionWindowsFormsApplication : WinApplication {
// ...
public MySolutionWindowsFormsApplication() {
CompositeObjectSpace.AutoDisposeAdditionalObjectSpacesByDefault = true;
// ...
}
}
See Also
How to refresh Non-Persistent Objects and reload nested Persistent Objects