The kind of changes that can be tracked in a ChangeTrackedEventArgs.

Namespace:  Mindscape.LightSpeed
Assembly:  Mindscape.LightSpeed (in Mindscape.LightSpeed.dll)
Version: 4.0.0.0 (4.0.0.0)

Syntax

C#
public enum ChangeKind
Visual Basic (Declaration)
Public Enumeration ChangeKind

Members

Member nameDescription
Immediate
An entity property was changed normally. The ChangedValue contains the details.
Pending
An entity property was changed within a BeginEdit() transaction. The ChangedValue contains the details.
Commit
Pending changes were committed to the entity using EndEdit(). The ChangedValue will be null. Note that this refers to EndEdit(), not to flushing changes to the database.
Cancel
Pending changes to the entity were cancelled using CancelEdit(). The ChangedValue will be null.

See Also