0

我有一个问题一直在努力解决。我正在尝试从 AD 搜索结果中获取 sidhistory 属性。有没有人可以提供一些启示,或者为我指出如何获得 sidhistory 财产价值的正确方向?

这是我所做的一个示例....我遍历属性,但是当我调试代码时没有 sidhistory 属性。

using (DirectoryEntry directoryEntryUser = new DirectoryEntry(searchResult.Path))
{
    foreach (string propertyName in directoryEntryUser.Properties.PropertyNames)
    {
            PropertyValueCollection propertyValues = 
            directoryEntryUser.Properties[propertyName];
            // And the rest of the code goes here
            // to get the values.
            // Sid-History or any variation never displays here 
            // as a property name
            // however objectsid does display
    }
}
4

1 回答 1

0

并非所有属性都默认加载,应该使用PropertiesToLoadDirectoryEntry 的属性,见msdn

于 2013-06-11T10:12:13.873 回答