CmisSync.ControllerBase.UpdateRepositorySettings C# (CSharp) 메소드

UpdateRepositorySettings() 공개 메소드

Update settings for repository.
public UpdateRepositorySettings ( string repoName, string password, int pollInterval, bool syncAtStartup ) : void
repoName string
password string
pollInterval int
syncAtStartup bool
리턴 void
        public void UpdateRepositorySettings(string repoName, string password, int pollInterval, bool syncAtStartup)
        {
            foreach (RepoBase repoBase in this.repositories)
            {
                if (repoBase.Name == repoName)
                {
                    repoBase.UpdateSettings(password, pollInterval, syncAtStartup);
                    OnErrorResolved();
                    FolderListChanged();
                }
            }
        }