ConflictResolutionPolicy Enumeration

Represents the options for the conflict resolution policy to use for the synchronization session.

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

'Declaration
Public Enumeration ConflictResolutionPolicy
'Usage
Dim instance As ConflictResolutionPolicy

Member nameDescription
ApplicationDefinedDelegate to the application to resolve conflicts. Setting this policy will cause SyncCallbacks.ItemConflicting to be fired for every conflict.
DestinationWinsThe destination item is always chosen as the resolution winner. When a conflict occurs, no change will be made to the destination item.
SourceWinsThe source change is always chosen as the resolution winner. When a conflict occurs, the source change is applied to the destination, overwriting the destination item.
Show: