Exemplo n.º 1
0
 public LdapManager(IOptions <AbpLdapOptions> ldapSettingsOptions, IHybridServiceScopeFactory hybridServiceScopeFactory)
 {
     _hybridServiceScopeFactory = hybridServiceScopeFactory;
     _ldapOptions = ldapSettingsOptions.Value;
     _searchBase  = _ldapOptions.SearchBase;
 }
Exemplo n.º 2
0
 public LdapManager(IOptions <AbpLdapOptions> ldapSettingsOptions)
 {
     LdapOptions = ldapSettingsOptions.Value;
     Logger      = NullLogger <LdapManager> .Instance;
 }
Exemplo n.º 3
0
 public LdapManager(IOptions <AbpLdapOptions> ldapSettingsOptions)
 {
     _ldapOptions = ldapSettingsOptions.Value;
     _searchBase  = _ldapOptions.SearchBase;
 }