如何在 C# 中读取 msExchMailboxSecurityDescriptor 属性
我正在尝试读取 AD 中的所有用户属性。
如何在 C# 中读取 msExchMailboxSecurityDescriptor
属性?
我使用了以下代码,但出现了强制转换错误。任何建议都将受到欢迎。
DirectoryObjectSecurity oSec = new ActiveDirectorySecurity();
oSec.SetSecurityDescriptorBinaryForm((byte[])val);
String m_Value = oSec.GetSecurityDescriptorSddlForm(AccessControlSections.All);
return m_Value;
I am trying to read all the user attributes in AD.
How to read msExchMailboxSecurityDescriptor
attribute in C# ?
I used the following code but I got a cast error. Any suggestions would be welcome.
DirectoryObjectSecurity oSec = new ActiveDirectorySecurity();
oSec.SetSecurityDescriptorBinaryForm((byte[])val);
String m_Value = oSec.GetSecurityDescriptorSddlForm(AccessControlSections.All);
return m_Value;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的。我能够弄清楚。下面给出了代码,供感兴趣的人使用。我希望微软能够提供一些代码示例,这样人们就不必伤透脑筋了。
Ok. I was able to figure it out. The code is given below for anyone interested. I wish Microsoft had put out some code samples so that people do not have to break their heads.