CmisSync.Lib.Filter.RepositoryRootDeletedDetection.IsRootFolderAvailable C# (CSharp) 메소드

IsRootFolderAvailable() 개인적인 메소드

private IsRootFolderAvailable ( ) : bool
리턴 bool
        private bool IsRootFolderAvailable() {
            this.path.Refresh();
            if (!this.path.Exists || this.path.FullName != this.absolutePath) {
                this.isRootFolderAvailable = false;
            } else {
                this.isRootFolderAvailable = true;
            }

            return this.isRootFolderAvailable;
        }
    }