次の方法で共有


ManagementAuthorization.GetAuthorizedUsers メソッド

定義

指定した構成パスの承認されたユーザーのコレクションを取得します。

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 マネージャーのアクセス許可] ページのユーザーの完全な一覧から、指定したコレクションを取得します。

適用対象