我正在开发一个C#.NET Framework库来访问活动目录。
我要做的一件事就是让所有AD用户,我看到了:
PrincipalContext principalContext =
new PrincipalContext(ContextType.Domain,
domainName.Trim(),
domainContainer.Trim());
和
PrincipalContext principalContext = new PrincipalContext(ContextType.Domain);
使用以下代码返回相同的用户:
// define a "query-by-example" principal - here, we search for all users
UserPrincipal qbeUser = new UserPrincipal(principalContext);
// create your principal searcher passing in the QBE principal
PrincipalSearcher srch = new PrincipalSearcher(qbeUser);
// find all matches
foreach (var found in srch.FindAll())
{
UserPrincipal user = found as UserPrincipal;
if (user != null)
{
Console.WriteLine(user.SamAccountName);
}
}
何时需要使用域名和域名容器?
答案 0 :(得分:9)
使用时
var context = new PrincipalContext(ContextType.Domain);
它将连接到当前上下文的域,通常是运行应用程序的用户登录的域,或者如果当前上下文是未连接到域的本地用户,则会抛出异常。
使用时
var context = new PrincipalContext(ContextType.Domain, domainName, domainContainer);
域属性允许您连接到当前上下文之外的域,假设当前上下文具有权限或您提供有效凭据。因此,例如,在林中存在多个域或域信任的环境中,您可以指定另一个域来运行查询,而不是用户所属的域。
容器属性将使用DomainContext
的所有查询限制到指定的容器。
答案 1 :(得分:0)
上下文用于创建一个目录条目:
new DirectoryEntry("LDAP://domain_name/container")
或没有容器时:
new DirectoryEntry("LDAP://domain_name/rootDse")
你可以省略域名,但我建议总是包含它,因为我过去遇到了它(一些随机引发的例外)。
如果要将搜索限制为特定OU,则应包括容器。