SaveChangeContext.ChangeData Property

Gets the item data from the source provider.

Namespace: Microsoft.Synchronization
Assembly: Microsoft.Synchronization (in microsoft.synchronization.dll)

Syntax

'Declaration
Public ReadOnly Property ChangeData As Object
'Usage
Dim instance As SaveChangeContext
Dim value As Object

value = instance.ChangeData
public Object ChangeData { get; }
public:
property Object^ ChangeData {
    Object^ get ();
}
/** @property */
public Object get_ChangeData ()
public function get ChangeData () : Object

Property Value

The item data from the source provider. Is a null reference (Nothing in Visual Basic) when no data is available, such as when the change is SaveChangeAction.DeleteAndRemoveTombstone or SaveChangeAction.DeleteAndStoreTombstone.

Remarks

Sync Framework obtains this object from the source provider by calling its IChangeDataRetriever.LoadChangeData method.

The exact data type of the returned change data object is provider specific.

See Also

Reference

SaveChangeContext Class
SaveChangeContext Members
Microsoft.Synchronization Namespace