我正在使用DirectorySearcher.FindOne()
方法。
我在Active Directory用户属性中指定了Mobile
个号码。我的搜索过滤器看起来像这样
(&(ObjectClass=User)(mobile=+11111111111))
使用此过滤器,我可以获得适当的用户。
我还在AD用户属性中指定了传真号码,但SearchResult
不包含传真属性。实际上SearchResult
只包含一个属性,但我希望返回所有用户属性,包括传真号。
我应该修改我的查询以获取传真号码吗?可能需要更改我的AD用户或LDAP服务器吗?
答案 0 :(得分:4)
使用DirectorySearcher
时,您可以使用 SearchResult
集合定义PropertiesToLoad
中包含的属性。如果未指定任何内容,则只能获得标识的LDAP名称
所以尝试这样的事情:
DirectoryEntry root = new DirectoryEntry("LDAP://-your-base-LDAP-path-here-");
DirectorySearcher searcher = new DirectorySearcher(root);
searcher.Filter = "(&(ObjectClass=User)(mobile=+11111111111))";
// DEFINE what properties you need !
searcher.PropertiesToLoad.Add("Mobile");
searcher.PropertiesToLoad.Add("Fax");
SearchResult result = searcher.FindOne();
if (result != null)
{
if (result.Properties["Fax"] != null)
{
string fax = result.Properties["Fax"][0].ToString();
}
if (result.Properties["Mobile"] != null)
{
string mobile = result.Properties["Mobile"][0].ToString();
}
}