public LdapServerInfo(LdapServerInfo info) { Path = info.Path; Username = info.Username; Password = info.Password; }
/// <param name="serverInfo">The LDAP server and root path that should be used to perform searches in.</param> public LdapHelper(LdapServerInfo serverInfo) : this() { _root.Path = serverInfo.Path; Username = serverInfo.Username; Password = serverInfo.Password; }
public LdapUserQuery() { Server = new LdapServerInfo(); }