Back to Devexpress

BaseObjectSpace.Committing Event

expressappframework-devexpress-dot-expressapp-dot-baseobjectspace-92eaee8d.md

latest1.9 KB
Original Source

BaseObjectSpace.Committing Event

Occurs before saving the persistent objects belonging to the current Object Space to the database.

Namespace : DevExpress.ExpressApp

Assembly : DevExpress.ExpressApp.v25.2.dll

NuGet Package : DevExpress.ExpressApp

Declaration

csharp
public event EventHandler<CancelEventArgs> Committing
vb
Public Event Committing As EventHandler(Of CancelEventArgs)

Event Data

The Committing event's data class is CancelEventArgs. The following properties provide information specific to this event:

PropertyDescription
CancelGets or sets a value indicating whether the event should be canceled.

Remarks

The Committing event is raised before committing persistent objects as a result of calling the BaseObjectSpace.CommitChanges method. Handle this event to prevent saving object changes to the database. For this purpose, set the handler’s CancelEventArgs.Cancel parameter to true. By default, this parameter is set to false.

Implements

Committing

See Also

BaseObjectSpace Class

BaseObjectSpace Members

DevExpress.ExpressApp Namespace