Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Represents the options for the conflict resolution policy to use for the synchronization session.
Namespace: Microsoft.Synchronization
Assembly: Microsoft.Synchronization (in microsoft.synchronization.dll)
Syntax
'Declaration
Public Enumeration ConflictResolutionPolicy
'Usage
Dim instance As ConflictResolutionPolicy
public enum ConflictResolutionPolicy
public enum class ConflictResolutionPolicy
public enum ConflictResolutionPolicy
public enum ConflictResolutionPolicy
Members
Member name | Description | |
---|---|---|
ApplicationDefined | Delegate to the application to resolve conflicts. Setting this policy will cause SyncCallbacks.ItemConflicting to be fired for every conflict. | |
DestinationWins | The destination item is always chosen as the resolution winner. When a conflict occurs, no change will be made to the destination item. | |
SourceWins | The 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. |