IObjectSpace.IsCommitting Property
Indicates whether the Object Space is currently committing the changes made to its object(s).
Namespace: DevExpress.ExpressApp
Assembly: DevExpress.ExpressApp.v24.1.dll
NuGet Package: DevExpress.ExpressApp
Declaration
Property Value
Type | Description |
---|---|
Boolean | true, if the Object Space is currently committing changes; otherwise, false. |
Remarks
When implementing the IObjectSpace interface in the BaseObjectSpace class’s descendant, you don’t have to implement the IsCommitting property. It’s implemented in the BaseObjectSpace class. In your descendant, you should set this property to true in your DoCommit method before the commit, and then to false after the commit.
See Also