AuthorizationRuleCollection.IndexOf(AuthorizationRule) メソッド

定義

指定した AuthorizationRule オブジェクトのコレクション インデックスを取得します。

public:
 int IndexOf(System::Web::Configuration::AuthorizationRule ^ rule);
public int IndexOf (System.Web.Configuration.AuthorizationRule rule);
member this.IndexOf : System.Web.Configuration.AuthorizationRule -> int
Public Function IndexOf (rule As AuthorizationRule) As Integer

パラメーター

rule
AuthorizationRule

インデックスが返される AuthorizationRule オブジェクト。

戻り値

指定された AuthorizationRule オブジェクトのインデックス。

IndexOf メソッドを使用するコード例を次に示します。

// Get the rule collection index.
System.Int32 ruleIndex = 
    authorizationSection.Rules.IndexOf(authorizationRule);
' Get the rule collection index.
  Dim ruleIndex As System.Int32 = _
  authorizationSection.Rules.IndexOf(authorizationRule)

適用対象