示例#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();
        }