使用 PrimarySearcher 從 Active Directory 檢索使用者資訊
如果您是 Active Directory 新手,了解其分層資料結構和LDAP 查詢功能。要檢索使用者列表,System.DirectoryServices.AccountManagement 中的PrincipalSearcher 類別提供了一個直覺的方法。
使用 (var context = new PrimaryContext(ContextType.Domain, "yourdomain.com"))
建立到指定網域的連線。
using (var searcher = new PrimarySearcher(new UserPrincipal(context)))
建立用於尋找使用者主體的搜尋器物件。
在FindAll() 迴圈中,取得與每個結果相關的DirectoryEntry 物件來存取屬性,例如:
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();
以上是如何使用PrincipalSearcher 從Active Directory 檢索使用者資訊?的詳細內容。更多資訊請關注PHP中文網其他相關文章!