public LdapDirectoryAccountService(IOptions <LdapSettings> ldapSettingsOptions)
        {
            this.ldapDirectoryService = new LdapDirectoryService(ldapSettingsOptions);

            this.ldapDirectoryService.ObjectClass = this.ObjectClass;
        }
 public LdapDirectoryAccountService(LdapSettings ldapSettings)
 {
     this.ldapDirectoryService             = new LdapDirectoryService(ldapSettings);
     this.ldapDirectoryService.ObjectClass = this.ObjectClass;
 }
        // LdapSettings LdapSettings;

        public LdapDirectoryAccountService()
        {
            this.ldapDirectoryService             = new LdapDirectoryService();
            this.ldapDirectoryService.ObjectClass = this.ObjectClass;
        }
 public LdapDirectoryAccountService(IConfiguration configuration)
 {
     this.ldapDirectoryService             = new LdapDirectoryService(configuration);
     this.ldapDirectoryService.ObjectClass = this.ObjectClass;
 }
Exemple #5
0
 public LdapDirectoryRoleAccountService()
 {
     // DirectoryAccountType = typeof(DirectoryAccount);
     this.ldapDirectoryService             = new LdapDirectoryService();
     this.ldapDirectoryService.ObjectClass = this.ObjectClass;
 }
 public LdapDirectoryAccountService(DirectoryEntry rootEntry)
 {
     // DirectoryAccountType = typeof(DirectoryAccount);
     this.ldapDirectoryService             = new LdapDirectoryService(rootEntry);
     this.ldapDirectoryService.ObjectClass = this.ObjectClass;
 }
        // LdapSettings LdapSettings;

        public LdapDirectoryGroupService() {
            this.ldapDirectoryService = new LdapDirectoryService();
            this.ldapDirectoryService.ObjectClass = this.ObjectClass;
        }
Exemple #8
0
 public LdapDirectoryDistributionListService(LdapSettings ldapSettings)
 {
     this.ldapDirectoryService             = new LdapDirectoryService(ldapSettings);
     this.ldapDirectoryService.ObjectClass = this.ObjectClass;
 }
Exemple #9
0
 public LdapDirectoryDistributionListService(IConfiguration configuration)
 {
     this.ldapDirectoryService             = new LdapDirectoryService(configuration);
     this.ldapDirectoryService.ObjectClass = this.ObjectClass;
 }
Exemple #10
0
        // LdapSettings LdapSettings;

        public LdapDirectoryDistributionListService()
        {
            this.ldapDirectoryService             = new LdapDirectoryService();
            this.ldapDirectoryService.ObjectClass = this.ObjectClass;
        }
Exemple #11
0
 public LdapDirectoryDistributionListService()
 {
     // DirectoryAccountType = typeof(DirectoryAccount);
     this.ldapDirectoryService             = new LdapDirectoryService();
     this.ldapDirectoryService.ObjectClass = this.ObjectClass;
 }