我有一个问题,我一直在努力。 我试图从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
}
}