次の方法で共有


AuthorizationRuleCollection.Set(Int32, AuthorizationRule) メソッド

定義

コレクション内の指定したインデックス位置に、指定した AuthorizationRule オブジェクトを追加します。

public:
 void Set(int index, System::Web::Configuration::AuthorizationRule ^ rule);
public void Set (int index, System.Web.Configuration.AuthorizationRule rule);
member this.Set : int * System.Web.Configuration.AuthorizationRule -> unit
Public Sub Set (index As Integer, rule As AuthorizationRule)

パラメーター

index
Int32

指定した AuthorizationRuleCollection オブジェクトを追加するインデックス位置。

rule
AuthorizationRule

追加する AuthorizationRule オブジェクトです。

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

// Using the AuthorizationRuleCollection Set method.

// Define the rule to add to the collection.

// Define the collection index.
System.Int32 rIndex = 0;

// Set the rule in the collection.
authorizationRuleCollection.Set(rIndex, 
    authorizationRule);
' Using the AuthorizationRuleCollection Set method.
' Define the rule to add to the collection.
' Define the collection index.
Dim rIndex As System.Int32 = 0

' Set the rule in the collection.
  authorizationRuleCollection.Set(rIndex, _
  authorizationRule)

適用対象