Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

IXPModificationsStore Interface

Implemented by classes that store information about the modified properties.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v21.1.dll

NuGet Package: DevExpress.Xpo

Declaration

public interface IXPModificationsStore

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