Ldap无法访问entryCSN或时间戳

时间:2017-12-01 00:21:29

标签: c# ldap

我在PBX上使用LDAP电话簿,我正在尝试访问用户的whenCreated或entryCSN属性。我可以在我的LDAP资源管理器中看到它们,但无法读取我所追求的属性。只有某些属性可以访问这样的电话号码。

为什么会这样? 使用下面的代码,我可以得到所有的值,但不是我追求的那些

entryCSN

但我无法让foreach (DirectoryEntry child in domain.Children) { foreach (string propName in child.Properties.PropertyNames) { if (child.Properties[propName].Value != null) { MessageBox.Show(propName + " = " + child.Properties[propName].Value); //child.SchemaEntry.Properties.PropertyNames } else { MessageBox.Show(propName + " = NULL"); } } } #!/bin/bash工作

代码:

for i in $(seq 1 5); do echo "$i"; done

0 个答案:

没有答案