如何使用活动目录中的c#获取SID-History值

时间:2012-11-07 10:06:31

标签: c# active-directory sid

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

1 个答案:

答案 0 :(得分:0)

默认情况下并非所有属性都已加载,您应该使用DirectoryEntry的PropertiesToLoad属性,请参阅msdn