SyncOrchestrator.Direction Property
Gets or sets the direction of synchronization. For two-way synchronizations, this also includes the order in which the synchronizations are performed.
Namespace: Microsoft.Synchronization
Assembly: Microsoft.Synchronization (in microsoft.synchronization.dll)
Syntax
'Declaration
Public Property Direction As SyncDirectionOrder
'Usage
Dim instance As SyncOrchestrator
Dim value As SyncDirectionOrder
value = instance.Direction
instance.Direction = value
public SyncDirectionOrder Direction { get; set; }
public:
property SyncDirectionOrder Direction {
SyncDirectionOrder get ();
void set (SyncDirectionOrder value);
}
/** @property */
public SyncDirectionOrder get_Direction ()
/** @property */
public void set_Direction (SyncDirectionOrder value)
public function get Direction () : SyncDirectionOrder
public function set Direction (value : SyncDirectionOrder)
Property Value
The direction of synchronization. For two-way synchronizations, this also includes the order in which the synchronizations are performed. The default is UploadAndDownload.
Remarks
The direction is combined with the relative positions of the synchronization providers to determine the flow of changes during synchronization. Upload means changes originate from the local provider and are applied to the remote provider. Download means changes originate from the remote provider and are applied to the local provider.
See Also
Reference
SyncOrchestrator Class
SyncOrchestrator Members
Microsoft.Synchronization Namespace