尝试在 Active Directory 中搜索有关用户的非空描述(意味着他们有职位),如下面的第 4 行所示,但出现错误,我无法使用排除!
对另一种方法的建议?
PrincipalContext ctx = new PrincipalContext(ContextType.Domain);
UserPrincipal qbeUser = new UserPrincipal(ctx);
PrincipalSearcher srch = new PrincipalSearcher(qbeUser);
var example = new UserPrincipal(ctx) { Description != null };