DC 是您的域。如果您想连接到域 example.com,那么您的 dc 是:DC=example,DC=com
您实际上不需要域控制器的任何主机名或 IP 地址(可能有很多)。
想象一下,您正在连接到域本身。因此,要连接到域 example.com,您可以简单地编写
DirectoryEntry directoryEntry = new DirectoryEntry("LDAP://example.com");
你完成了。
您还可以指定用于连接的用户和密码:
DirectoryEntry directoryEntry = new DirectoryEntry("LDAP://example.com", "username", "password");
还要确保始终以大写形式编写 LDAP。我遇到了一些麻烦和奇怪的异常,直到我在某个地方读到我应该尝试用大写字母写它并解决了我的问题。
该directoryEntry.Path
属性允许您更深入地了解您的领域。因此,如果您想在特定 OU(组织单位)中搜索用户,您可以在此处进行设置。
DirectoryEntry directoryEntry = new DirectoryEntry("LDAP://example.com");
directoryEntry.Path = "LDAP://OU=Specific Users,OU=All Users,OU=Users,DC=example,DC=com";
这将匹配以下 AD 层次结构:
只需从最深到最高编写层次结构。
现在你可以做很多事情
例如,通过帐户名称搜索用户并获取用户的姓氏:
DirectoryEntry directoryEntry = new DirectoryEntry("LDAP://example.com");
DirectorySearcher searcher = new DirectorySearcher(directoryEntry) {
PageSize = int.MaxValue,
Filter = "(&(objectCategory=person)(objectClass=user)(sAMAccountName=AnAccountName))"
};
searcher.PropertiesToLoad.Add("sn");
var result = searcher.FindOne();
if (result == null) {
return; // Or whatever you need to do in this case
}
string surname;
if (result.Properties.Contains("sn")) {
surname = result.Properties["sn"][0].ToString();
}