DbApplyChangeFailedEventArgs.Context Property

Gets a DbSyncContext object that contains data changes, anchor values, and other metadata for a synchronization session.

Namespace:  Microsoft.Synchronization.Data
Assembly:  Microsoft.Synchronization.Data (in Microsoft.Synchronization.Data.dll)

Syntax

'Declaration
Public ReadOnly Property Context As DbSyncContext
    Get
'Usage
Dim instance As DbApplyChangeFailedEventArgs
Dim value As DbSyncContext

value = instance.Context
public DbSyncContext Context { get; }
public:
property DbSyncContext^ Context {
    DbSyncContext^ get ();
}
member Context : DbSyncContext
function get Context () : DbSyncContext

Property Value

Type: Microsoft.Synchronization.Data.DbSyncContext
A DbSyncContext object that contains data changes, anchor values, and other metadata for a synchronization session.

Remarks

If an application must change data values during synchronization, use the DbSyncContext object that is available through the Context property, instead of the DbSyncConflict object. The DbSyncConflict object contains copies of the rows at each peer. Changes to these copies are not persisted at each peer during synchronization.

See Also

Reference

DbApplyChangeFailedEventArgs Class

Microsoft.Synchronization.Data Namespace