CmisSync.Lib.Cmis.AbstractNotifyingRepository.AbstractNotifyingRepository C# (CSharp) Метод

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

Initializes a new instance of the CmisSync.Lib.Cmis.AbstractNotifyingRepository class.
public AbstractNotifyingRepository ( RepoInfo repoInfo ) : System
repoInfo CmisSync.Lib.Config.RepoInfo Repo info. Must not be null.
Результат System
        public AbstractNotifyingRepository(RepoInfo repoInfo) {
            this.Status = this.RepoStatusFlags.Status;
            if (repoInfo == null) {
                throw new ArgumentNullException("repoInfo");
            }

            // Initialize local variable
            this.RepoInfo = repoInfo;
        }