/// <summary>
 /// Constructor
 /// </summary>
 /// <param name="ldapWebApiBaseUrl">LDAP Web Api base URL</param>
 /// <param name="clientCredentials">Security parameters to get an access token from Identiti Server.</param>
 protected LDAPWebApiBaseClient(string ldapWebApiBaseUrl, WebApiClientCredentials clientCredentials) : base(ldapWebApiBaseUrl, clientCredentials)
 {
 }
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="ldapWebApiBaseUrl">LDAP Web Api base URL</param>
 /// <param name="ldapServerProfile">LDAP Server Profile Id</param>
 /// <param name="useLdapServerGlobalCatalog">Wheter the global catalog or the local catalog will be used.</param>
 /// <param name="clientCredentials">Security parameters to get an access token from Identiti Server.</param>
 protected LDAPWebApiBaseClient(string ldapWebApiBaseUrl, string ldapServerProfile, bool useLdapServerGlobalCatalog, WebApiClientCredentials clientCredentials) : this(ldapWebApiBaseUrl, clientCredentials)
 {
     LDAPServerProfile          = ldapServerProfile;
     UseLDAPServerGlobalCatalog = useLdapServerGlobalCatalog;
 }
 /// <summary>
 /// Constructor.
 /// </summary>
 /// <param name="ldapWebApiBaseUrl">LDAP Web Api base URL.</param>
 /// <param name="ldapServerProfile">LDAP Server Profile Id.</param>
 /// <param name="useLdapServerGlobalCatalog">Whether or not the global catalog of the LDAP server will be used; otherwise the local catalog of the LDAP server will be used.</param>
 /// <param name="clientCredentials">Client credentials to request an access token  from the Identity Server. This access token will be sent in the HTTP authorization header as Bearer Token.</param>
 public LDAPDirectoryWebApiClient(string ldapWebApiBaseUrl, string ldapServerProfile, bool useLdapServerGlobalCatalog, WebApiClientCredentials clientCredentials) : base(ldapWebApiBaseUrl, ldapServerProfile, useLdapServerGlobalCatalog, clientCredentials)
 {
 }
 public LDAPUsersDirectoryWebApiClient(string webApiBaseUrl, string serverProfile, bool useGlobalCatalog, WebApiClientCredentials clientCredentials) : base(webApiBaseUrl, serverProfile, useGlobalCatalog, clientCredentials)
 {
 }
Example #5
0
 /// <summary>
 /// Constructor.
 /// </summary>
 /// <param name="ldapWebApiBaseUrl">LDAP Web Api base URL.</param>
 /// <param name="clientCredentials">Client credentials to request an access token  from the Identity Server. This access token will be sent in the HTTP authorization header as Bearer Token.</param>
 public LDAPServerProfilesWebApiClient(string ldapWebApiBaseUrl, WebApiClientCredentials clientCredentials) : base(ldapWebApiBaseUrl, clientCredentials)
 {
 }
Example #6
0
 /// <summary>
 /// Constructor.
 /// </summary>
 /// <param name="ldapWebApiBaseUrl">LDAP Web Api base URL.</param>
 /// <param name="ldapServerProfile">LDAP Server Profile Id.</param>
 /// <param name="useLdapServerGlobalCatalog">Whether or not the global catalog of the LDAP server will be used; otherwise the local catalog of the LDAP server will be used.</param>
 /// <param name="clientCredentials">Client credentials to request an access token  from the Identity Server. This access token will be sent in the HTTP authorization header as Bearer Token.</param>
 public LDAPAuthenticationsWebApiClient(string ldapWebApiBaseUrl, string ldapServerProfile, bool useLdapServerGlobalCatalog, WebApiClientCredentials clientCredentials = null) : base(ldapWebApiBaseUrl, ldapServerProfile, useLdapServerGlobalCatalog, clientCredentials)
 {
 }
Example #7
0
 /// <summary>
 /// Constructor.
 /// </summary>
 /// <param name="ldapWebApiBaseUrl">LDAP Web Api base URL.</param>
 /// <param name="clientCredentials">Client credentials to request an access token  from the Identity Server. This access token will be sent in the HTTP authorization header as Bearer Token.</param>
 public LDAPCatalogTypesWebApiClient(string ldapWebApiBaseUrl, WebApiClientCredentials clientCredentials) : base(ldapWebApiBaseUrl, clientCredentials)
 {
 }