Enum SynchronizationDirection
Denotes the direction of a synchronization
Namespace: NMF.Synchronizations
Assembly: NMF.Synchronizations.dll
Syntax
public enum SynchronizationDirection
Fields
Name | Description |
---|---|
CheckOnly | No changes are made, but only inconsistencies are found and reported |
LeftToRight | Elements existing in LHS are translated to RHS |
LeftToRightForced | Elements existing in LHS are translated to RHS, RHS elements with no existing corresponding LHS element are deleted |
LeftWins | Elements existing in LHS are translated to RHS and vice versa, in case of conflicts the LHS wins |
RightToLeft | Elements existing in RHS are translated to LHS |
RightToLeftForced | Elements existing in RHS are translated to LHS, LHS elements with no existing corresponding HS element are deleted |
RightWins | Elements existing in LHS are translated to RHS and vice versa, in case of conflicts the RHS wins |