我正在尝试查询 AD 以检索用户数据。
查询工作正常,但在枚举通过 GetDirectoryEntry 返回的属性时,我无法看到我在 Active Directory Explorer 中看到的所有属性。
下面的代码片段:
offEntry = pResult.GetDirectoryEntry();
foreach (PropertyValueCollection o in offEntry.Properties)
{
Debug.Print(o.PropertyName + " = " + o.Value.ToString());
}
我看到像“displayName”和“SAMAccountName”等属性,但不是我真正想要的属性,例如:“postalCode”、“streetAddress”。
我已经尝试为这个特定问题寻找解决方案,但已经走到了死胡同。我错过了什么???
问候彼得