C# 클래스 CmisSync.Lib.RepoInfo

All the info for a particular CmisSync synchronized folder. Contains local info, as well as remote info to connect to the CMIS folder.
파일 보기 프로젝트 열기: keithwharrison/Oris4Sync 1 사용 예제들

공개 메소드들

메소드 설명
RepoInfo ( string name, string cmisDatabaseFolder ) : System

Simple constructor.

RepoInfo ( string name, string cmisDatabaseFolder, string remotePath, string address, string user, string password, string repoID, double pollInterval ) : System

Full constructor.

addIgnorePath ( string path ) : void

Adds a new path to the list of paths, which should be ignored. It has to be a absolute path from the repoID on with a leading slash. Path separator must also be a slash.

getIgnoredPaths ( ) : string[]

All folders, which should be ignored on synchronization will be returned.

isPathIgnored ( string path ) : bool

If the given path should be ignored, TRUE will be returned, otherwise FALSE.

메소드 상세

RepoInfo() 공개 메소드

Simple constructor.
public RepoInfo ( string name, string cmisDatabaseFolder ) : System
name string
cmisDatabaseFolder string
리턴 System

RepoInfo() 공개 메소드

Full constructor.
public RepoInfo ( string name, string cmisDatabaseFolder, string remotePath, string address, string user, string password, string repoID, double pollInterval ) : System
name string
cmisDatabaseFolder string
remotePath string
address string
user string
password string
repoID string
pollInterval double
리턴 System

addIgnorePath() 공개 메소드

Adds a new path to the list of paths, which should be ignored. It has to be a absolute path from the repoID on with a leading slash. Path separator must also be a slash.
public addIgnorePath ( string path ) : void
path string
리턴 void

getIgnoredPaths() 공개 메소드

All folders, which should be ignored on synchronization will be returned.
public getIgnoredPaths ( ) : string[]
리턴 string[]

isPathIgnored() 공개 메소드

If the given path should be ignored, TRUE will be returned, otherwise FALSE.
public isPathIgnored ( string path ) : bool
path string
리턴 bool