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.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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