0

アプリケーションのダッシュボードにアクティブなユーザーのリストを表示したいと考えています。

私のユーザーはすべて従業員であり、Active Directory 資格情報を介してアプリケーションにアクセスします。

UserPrincipal を使用して現在のユーザーの詳細を取得しましたが、現在のすべてのユーザーに対してこれを行うことはできますか?

4

1 に答える 1

2

PrincipalSearcherおよび「例によるクエリ」プリンシパルを使用して検索を行うことができます。

// create your domain context
using (PrincipalContext ctx = new PrincipalContext(ContextType.Domain))
{
   // define a "query-by-example" principal - here, we search for all "enabled" UserPrincipal 
   UserPrincipal qbeUser = new UserPrincipal(ctx);
   qbeUser.IsEnabled = true;

   // create your principal searcher passing in the QBE principal    
   PrincipalSearcher srch = new PrincipalSearcher(qbeUser);

   // find all matches
   foreach(var found in srch.FindAll())
   {
       // do whatever here - "found" is of type "Principal" - it could be user, group, computer.....          
   }
}

まだお読みでない場合は、.NET Framework 3.5でディレクトリ セキュリティ プリンシパルを管理するという MSDN の記事を必ずお読みくださいSystem.DirectoryServices.AccountManagement。または、System.DirectoryServices.AccountManagement 名前空間に関する MSDN ドキュメントを参照してください。

于 2013-04-08T15:21:45.830 に答える