コード例 #1
0
ファイル: Program.cs プロジェクト: acharal/spsync
 static void Main(string[] args)
 {
     SpSyncAgent agent = new SpSyncAgent();
     agent.Configuration.SyncTables.Add("Contacts", Microsoft.Synchronization.Data.SyncDirection.DownloadOnly);
     agent.SessionProgress += agent_SessionProgress;
     agent.Synchronize();
 }
コード例 #2
0
        static void Main(string[] args)
        {
            SpSyncAgent agent = new SpSyncAgent();

            agent.Configuration.SyncTables.Add("Contacts", Microsoft.Synchronization.Data.SyncDirection.DownloadOnly);
            agent.SessionProgress += agent_SessionProgress;
            agent.Synchronize();
        }