Represents actions that are taken to resolve a specific conflict.
Namespace: Microsoft.Synchronization
Assembly: Microsoft.Synchronization (in microsoft.synchronization.dll)

Syntax
Visual Basic (Declaration)
Public Enumeration ConflictResolutionAction
Dim instance As ConflictResolutionAction
public enum ConflictResolutionAction
public enum class ConflictResolutionAction
public enum ConflictResolutionAction
public enum ConflictResolutionAction

Members
| | Member name | Description |
|---|
| DestinationWins | The destination item is chosen as the resolution winner. No change is made to the destination item. |
| Merge | The source change is merged with the destination item. |
| SaveConflict | The conflict should be logged for later resolution. |
| SkipChange | The conflict is neither resolved nor logged. It is ignored. |
| SourceWins | The source change is chosen as the resolution winner. The source change is applied to the destination. This change overwrites the destination item. |

See Also