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.
파일 보기 프로젝트 열기: keithwharrison/Oris4Sync

공개 메소드들

메소드 설명
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