Exemplo n.º 1
0
        public SyncEngine(Config cfg, OneDriveApi onedrive)
        {
            this.cfg      = cfg;
            this.onedrive = onedrive;

            session = new UploadSession(onedrive, cfg.UploadStateFilePath);
        }
Exemplo n.º 2
0
 public UploadSession(OneDriveApi onedrive, string sessionFilePath)
 {
     this.onedrive        = onedrive;
     this.sessionFilePath = sessionFilePath;
 }