C# Class CmisSync.Auth.Auth

This class allows one to connect to a CMIS repository. It can return a list of repositories, or directly a CMIS session if the repository is known.
Datei anzeigen Open project: keithwharrison/Oris4Sync

Public Methods

Method Description
GetCmisRepositories ( Uri url, string user, string obfuscatedPassword ) : IList

Connect to a CMIS server and get the list of repositories. This method takes a obfuscated password, unlike the next method.

GetCmisSession ( string url, string user, string password, string repositoryId ) : ISession

Connect to a CMIS server and get a CMIS session that can be used for further CMIS operations.

Method Details

GetCmisRepositories() public static method

Connect to a CMIS server and get the list of repositories. This method takes a obfuscated password, unlike the next method.
public static GetCmisRepositories ( Uri url, string user, string obfuscatedPassword ) : IList
url System.Uri
user string
obfuscatedPassword string
return IList

GetCmisSession() public static method

Connect to a CMIS server and get a CMIS session that can be used for further CMIS operations.
public static GetCmisSession ( string url, string user, string password, string repositoryId ) : ISession
url string
user string
password string
repositoryId string
return ISession