CmisSync.Lib.Sync.CmisRepo.UpdateSettings C# (CSharp) 메소드

UpdateSettings() 공개 메소드

Update repository settings.
public UpdateSettings ( string password, int pollInterval, bool syncAtStartup ) : void
password string
pollInterval int
syncAtStartup bool
리턴 void
        public override void UpdateSettings(string password, int pollInterval, bool syncAtStartup)
        {
            base.UpdateSettings(password, pollInterval, syncAtStartup);
            synchronizedFolder.UpdateSettings(RepoInfo);
            Logger.Info("Updated sync settings. Restarting sync.");
            SyncInBackground();
        }