如何访问一个GroupPrincipal对象的备注字段字段、备注、对象、GroupPrincipal

2023-09-08 12:27:11 作者:爱情两难

我查询所有安全组在特定领域使用

I query all security groups in a specific domain using

PrincipalSearchResult<Principal> results = ps.FindAll();

其中PS是PrincipalSearcher。

where ps is a PrincipalSearcher.

然后我需要循环的结果(它转换成一GroupPrincipal第一),并找到包含在说明字段中的特定字符串的。

I then need to iterate the result (casting it to a GroupPrincipal first ) and locate the ones that contains a specific string in the notes field.

但是,从公元备注字段是appearently不在GroupPrincipal类,卫生署公共领域。 我究竟做错了什么?

But the Notes field from AD is appearently not a public field in the GroupPrincipal class, doh. What am I doing wrong ?

更新: 我已经在这一个放弃。好像是没有办法进入那个讨厌的备注字段。

Update: I have given up on this one. It seems like there is no way to access that pesky Notes field.

推荐答案

我已经回到这个challange一遍又一遍,但现在我终于放弃了。它肯定看起来像该属性是不可访问。

I have been returning to this challange over and over again, but now I have finally given up. It sure looks like that property is inaccessible.