Поделиться через


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)

Применяется к