Skip to main content
All docs
V23.2
.NET 6.0+

CompositeObjectSpace.AutoDisposeAdditionalObjectSpacesByDefault Field

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.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public static bool AutoDisposeAdditionalObjectSpacesByDefault

Field Value

Type Description
Boolean

true, if Object Spaces dispose of their inner Object Spaces from the AdditionalObjectSpaces collection when they dispose of themselves; otherwise, false.

Remarks

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