Skip to main content
A newer version of this page is available. .

IObjectSpace.IsCommitting Property

Indicates whether the Object Space is currently committing the changes made to its object(s).

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

bool IsCommitting { get; }

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