C# Класс 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.
Показать файл Открыть проект

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

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

Описание методов

GetCmisRepositories() публичный статический Метод

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
Результат IList

GetCmisSession() публичный статический Метод

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
Результат ISession