C# Class CmisSync.Lib.Config.RepoInfo

ファイルを表示 Open project: OpenDataSpace/CmisSync Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
AddIgnorePath ( string ignorePath ) : void

Adds the ignore path.

GetDatabasePath ( ) : string

Full path to the local database file/folder.

GetIgnoredPaths ( ) : List

Gets the ignored paths.

GetPassword ( ) : Password

Gets the password.

IsPathIgnored ( string path ) : bool

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

SetPassword ( Password password ) : void

Sets the password.

Method Details

AddIgnorePath() public method

Adds the ignore path.
public AddIgnorePath ( string ignorePath ) : void
ignorePath string /// Ignore path. ///
return void

GetDatabasePath() public method

Full path to the local database file/folder.
public GetDatabasePath ( ) : string
return string

GetIgnoredPaths() public method

Gets the ignored paths.
public GetIgnoredPaths ( ) : List
return List

GetPassword() public method

Gets the password.
public GetPassword ( ) : Password
return Password

IsPathIgnored() public method

If the given path should be ignored, TRUE will be returned, otherwise FALSE.
public IsPathIgnored ( string path ) : bool
path string /// Path to be checked ///
return bool

SetPassword() public method

Sets the password.
public SetPassword ( Password password ) : void
password Password Password instance.
return void