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

IXPModificationsStore Interface

Implemented by classes that store information about the modified properties.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v18.2.dll

Declaration

public interface IXPModificationsStore

The following members return IXPModificationsStore objects:

Remarks

To access a IXPModificationsStore storage for a given persistent object, use the static PersistentBase.GetModificationsStore method. Then, you can access the IXPModificationsStore methods. For example:


XPMemberInfo miContactTitle = person.ClassInfo.GetMember("ContactTitle");
IXPModificationsStore ms = PersistentBase.GetModificationsStore(person);
var oldValue = ms.GetPropertyOldValue(miContactTitle);
See Also