Skip to main content
A newer version of this page is available. .
.NET Standard 2.0+

IXPModificationsStore Interface

Implemented by classes that store information about the modified properties.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v19.2.dll

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