以下の 4 行目に示すように、Active Directory でユーザーの null 以外の説明 (役職があることを意味します) を検索しようとしていますが、除外を使用できないというエラーが表示されます。
別のアプローチの提案はありますか?
PrincipalContext ctx = new PrincipalContext(ContextType.Domain);
UserPrincipal qbeUser = new UserPrincipal(ctx);
PrincipalSearcher srch = new PrincipalSearcher(qbeUser);
var example = new UserPrincipal(ctx) { Description != null };