DirectoryEntry oDE = new DirectoryEntry("LDAP://DC=Test1,DC=Test2,DC=gov,DC=lk");
using (DirectorySearcher ds = new DirectorySearcher(oDE))
{
ds.PropertiesToLoad.Add("name");
ds.PropertiesToLoad.Add("userPrincipalName");
ds.Filter = "(&(objectClass=user))";
SearchResultCollection results = ds.FindAll();
foreach (SearchResult result in results)
{
Console.WriteLine("{0} - {1}",
result.Properties["name"][0].ToString(),
result.Properties["userPrincipalName"][0].ToString());
}
}
AD時在SearchResultCollection results = ds.FindAll();
線異常 「A轉診從服務器返回」 我得到一個異常:訪問從C#
一個轉診從服務器返回
爲什麼我能得到那個例外嗎?它是什麼意思?
最新的問題是什麼? – stack72
任何想法,爲什麼我得到這個異常? – Roshe