gpt4 book ai didi

c# - LDAP:如何使用 C# 从特定组获取用户列表?

转载 作者:行者123 更新时间:2023-11-30 15:41:03 24 4
gpt4 key购买 nike

所以我是 LDAP 的新手,我很难找到可靠的资源。

我能够建立连接,但我对如何从特定组获取用户列表有点迷茫。有人可以帮助我开始获取特定组的用户列表吗?

最佳答案

假设您正在谈论 Active Directory 作为您的 LDAP 存储,并且如果您使用的是 .NET 3.5 及更高版本,则您应该查看 System.DirectoryServices.AccountManagement (S.DS. AM) 命名空间。在这里阅读所有相关信息:

基本上,您可以定义域上下文并在 AD 中轻松找到用户和/或组:

// set up domain context
using (PrincipalContext ctx = new PrincipalContext(ContextType.Domain))
{
// find the group in question
GroupPrincipal group = GroupPrincipal.FindByIdentity(ctx, "YourGroupNameHere");

// if found....
if (group != null)
{
// iterate over members
foreach (Principal p in group.GetMembers())
{
Console.WriteLine("{0}: {1}", p.StructuralObjectClass, p.DisplayName);
// do whatever you need to do to those members
}
}

新的 S.DS.AM 使得在 AD 中与用户和组一起玩真的很容易!

关于c# - LDAP:如何使用 C# 从特定组获取用户列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8705065/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com