SyncAgent.Synchronize Method

Synchronizes data between the local and remote data stores.

Namespace: Microsoft.Synchronization
Assembly: Microsoft.Synchronization.Data (in microsoft.synchronization.data.dll)

Syntax

'Declaration
Public Function Synchronize As SyncStatistics
'Usage
Dim instance As SyncAgent
Dim returnValue As SyncStatistics

returnValue = instance.Synchronize
public SyncStatistics Synchronize ()
public:
SyncStatistics^ Synchronize ()
public SyncStatistics Synchronize ()
public function Synchronize () : SyncStatistics

Return Value

A SyncStatistics object that contains statistics for a synchronization session.

Example

The following code examples call the Synchronize method of a class that derives from SyncAgent, and then write information to the console. To view this code in the context of a complete example, see Getting Started: Client and Server Synchronization.

SampleSyncAgent sampleSyncAgent = new SampleSyncAgent();
SyncStatistics syncStatistics = sampleSyncAgent.Synchronize();
Console.WriteLine("Start Time: " + syncStatistics.SyncStartTime);
Console.WriteLine("Total Changes Downloaded: " + syncStatistics.TotalChangesDownloaded);
Console.WriteLine("Complete Time: " + syncStatistics.SyncCompleteTime);
Console.WriteLine(String.Empty);
Dim sampleSyncAgent As New SampleSyncAgent()
Dim syncStatistics As SyncStatistics = sampleSyncAgent.Synchronize()
Console.WriteLine("Start Time: " & syncStatistics.SyncStartTime)
Console.WriteLine("Total Changes Downloaded: " & syncStatistics.TotalChangesDownloaded)
Console.WriteLine("Complete Time: " & syncStatistics.SyncCompleteTime)
Console.WriteLine(String.Empty)

See Also

Reference

SyncAgent Class
SyncAgent Members
Microsoft.Synchronization Namespace