AuthorizationRuleCollection.Get(Int32) Method

Definition

Gets the AuthorizationRule at the specified index.

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

Parameters

index
Int32

The AuthorizationRule index.

Returns

The AuthorizationRule at the specified index.

Examples

The following code example shows how to use the Get method. Refer to the code example in the AuthorizationSection class topic to learn how to get the collection.

// Using the AuthorizationRuleCollection Get method.
AuthorizationRule authRule = 
    authorizationRuleCollection.Get(0);
' Using the AuthorizationRuleCollection Get method.
  Dim authRule As AuthorizationRule = _
  authorizationRuleCollection.Get(0)

Applies to