ManagementAuthorization.GetAuthorizedUsers メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定した構成パスの承認されたユーザーのコレクションを取得します。
public:
static Microsoft::Web::Management::Server::ManagementAuthorizationInfoCollection ^ GetAuthorizedUsers(System::String ^ configurationPath, bool includeChildren, int itemIndex, int itemsPerPage);
public static Microsoft.Web.Management.Server.ManagementAuthorizationInfoCollection GetAuthorizedUsers (string configurationPath, bool includeChildren, int itemIndex, int itemsPerPage);
static member GetAuthorizedUsers : string * bool * int * int -> Microsoft.Web.Management.Server.ManagementAuthorizationInfoCollection
Public Shared Function GetAuthorizedUsers (configurationPath As String, includeChildren As Boolean, itemIndex As Integer, itemsPerPage As Integer) As ManagementAuthorizationInfoCollection
パラメーター
- configurationPath
- String
構成パス。
- includeChildren
- Boolean
true
パラメーターで指定されたパスの子要素にあるすべての承認されたユーザーを返されたコレクションに configurationPath
含める場合は 。それ以外の場合 false
は 。
- itemIndex
- Int32
表示する最初 ManagementAuthorizationInfo のオブジェクトのインデックス。
- itemsPerPage
- Int32
パラメーターで指定されたオブジェクトの後に表示する追加 ManagementAuthorizationInfo オブジェクトの itemIndex
最大数。
戻り値
ManagementAuthorizationInfoCollection承認された各ユーザーの ManagementAuthorizationInfo オブジェクトを格納する オブジェクト。
例
GetAuthorizedUsersメソッドの例を次に示します。 このコード例は、ManagementAuthorization クラスのために提供されている大規模な例の一部です。
// Get a collection of authorized users.
ManagementAuthorizationInfoCollection authorizedCollection =
ManagementAuthorization.GetAuthorizedUsers(path, true, 0, -1);
message = "\nAuthorizedUsers count: " +
authorizedCollection.Count.ToString() + "\n ";
注釈
このメソッドは、指定された構成パスに対して承認されたユーザーのコレクションを返します。 コレクションはパラメーター値で itemIndex
始まり、 パラメーターで指定されたオブジェクトの数を itemsPerPage
格納します。 パラメーター値を超えるすべてのオブジェクトを取得するには、ManagementAuthorizationInfo-1 にitemIndex
設定itemsPerPage
します。 このメソッドは、IIS マネージャーの [ IIS マネージャーのアクセス許可] ページのユーザーの完全な一覧から、指定したコレクションを取得します。