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();
        }