CmisSync.Lib.RepoBase.Enable C# (CSharp) Метод

Enable() публичный Метод

Restart syncing.
public Enable ( ) : void
Результат void
        public virtual void Enable()
        {
            Enabled = true;
            RepoInfo.IsSuspended = false;

            //Get configuration
            Config config = ConfigManager.CurrentConfig;
            CmisSync.Lib.Config.SyncConfig.Folder syncConfig = config.GetFolder(this.Name);
            syncConfig.IsSuspended = false;
            config.Save();
        }