从 Active Directory 检索用户信息
作为 Active Directory 的新手,了解其分层数据存储机制和 LDAP 查询功能至关重要。
使用System.DirectoryServices.AccountManagement中的PrincipalSearcher,可以有效地检索用户信息。下面提供了一个示例:
using (var context = new PrincipalContext(ContextType.Domain, "yourdomain.com")) { using (var searcher = new PrincipalSearcher(new UserPrincipal(context))) { foreach (var result in searcher.FindAll()) { DirectoryEntry de = result.GetUnderlyingObject() as DirectoryEntry; Console.WriteLine("First Name: " + de.Properties["givenName"].Value); Console.WriteLine("Last Name : " + de.Properties["sn"].Value); Console.WriteLine("SAM account name : " + de.Properties["samAccountName"].Value); Console.WriteLine("User principal name: " + de.Properties["userPrincipalName"].Value); Console.WriteLine(); } } } Console.ReadLine();
“givenName”等属性提供名字,“sn”提供姓氏,“samAccountName”是 Windows 2000 之前的用户登录名,“userPrincipalName”通常在 Windows 2000 之后使用。
以上是如何使用 C# 高效地从 Active Directory 检索用户信息?的详细内容。更多信息请关注PHP中文网其他相关文章!