Back to Devexpress

CompositeObjectSpace.AutoDisposeAdditionalObjectSpacesByDefault Field

expressappframework-devexpress-dot-expressapp-dot-compositeobjectspace-709c6129.md

latest2.7 KB
Original Source

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

NuGet Package : DevExpress.ExpressApp

Declaration

csharp
public static bool AutoDisposeAdditionalObjectSpacesByDefault
vb
Public Shared AutoDisposeAdditionalObjectSpacesByDefault As Boolean

Field Value

TypeDescription
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.

csharp
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

CompositeObjectSpace Class

CompositeObjectSpace Members

DevExpress.ExpressApp Namespace