다음을 통해 공유


SyncAgent.Synchronize 메서드

로컬 데이터 저장소와 원격 데이터 저장소 간에 데이터를 동기화합니다.

네임스페이스: Microsoft.Synchronization
어셈블리: microsoft.synchronization.data.dll의 Microsoft.Synchronization.Data

구문

‘선언
Public Function Synchronize As SyncStatistics
‘사용 방법
Dim instance As SyncAgent
Dim returnValue As SyncStatistics

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

반환 값

동기화 세션에 대한 통계가 포함된 SyncStatistics 개체입니다.

예제

다음 코드 예제에서는 SyncAgent에서 파생된 클래스의 Synchronize 메서드를 호출한 다음 콘솔에 정보를 출력합니다. 전체 예제의 맥락에서 이 코드를 보려면 시작: 클라이언트 및 서버 동기화을 참조하십시오.

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)

참고 항목

참조

SyncAgent 클래스
SyncAgent 멤버
Microsoft.Synchronization 네임스페이스