コード例 #1
0
ファイル: Sync.cs プロジェクト: pjmt/onedrive-sync-dotnetcore
        public SyncEngine(Config cfg, OneDriveApi onedrive)
        {
            this.cfg      = cfg;
            this.onedrive = onedrive;

            session = new UploadSession(onedrive, cfg.UploadStateFilePath);
        }
コード例 #2
0
 public UploadSession(OneDriveApi onedrive, string sessionFilePath)
 {
     this.onedrive        = onedrive;
     this.sessionFilePath = sessionFilePath;
 }