CmisSync.Lib.Filter.RepositoryRootDeletedDetection.RepositoryRootDeletedDetection C# (CSharp) Метод

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

public RepositoryRootDeletedDetection ( IDirectoryInfo localRootPath ) : System
localRootPath IDirectoryInfo
Результат System
        public RepositoryRootDeletedDetection(IDirectoryInfo localRootPath) {
            if (localRootPath == null) {
                throw new ArgumentNullException();
            }

            this.path = localRootPath;
            this.absolutePath = this.path.FullName;
            this.isRootFolderAvailable = this.IsRootFolderAvailable();
        }