RuleSettingsCollection.Item[] Property

Definition

Gets a BufferModeSettings object.

Overloads

Item[Int32]

Gets the RuleSettings object at the specified numeric index.

Item[String]

Gets the RuleSettings object based on the specified key in the collection.

Item[Int32]

Gets the RuleSettings object at the specified numeric index.

public:
 property System::Web::Configuration::RuleSettings ^ default[int] { System::Web::Configuration::RuleSettings ^ get(int index); void set(int index, System::Web::Configuration::RuleSettings ^ value); };
public System.Web.Configuration.RuleSettings this[int index] { get; set; }
member this.Item(int) : System.Web.Configuration.RuleSettings with get, set
Default Public Property Item(index As Integer) As RuleSettings

Parameters

index
Int32

The index of a RuleSettings object in the collection.

Property Value

The RuleSettings object at the specified index.

Exceptions

Index is out of range.

Examples

The following code example shows how to use the Item[] method. This code example is part of a larger example provided for the HealthMonitoringSection class.

ruleSetting = healthMonitoringSection.Rules[i];
ruleSetting = healthMonitoringSection.Rules(i)

Remarks

A RuleSettings object at the specified index must exist.

See also

Applies to

Item[String]

Gets the RuleSettings object based on the specified key in the collection.

public:
 property System::Web::Configuration::RuleSettings ^ default[System::String ^] { System::Web::Configuration::RuleSettings ^ get(System::String ^ key); };
public System.Web.Configuration.RuleSettings this[string key] { get; }
member this.Item(string) : System.Web.Configuration.RuleSettings
Default Public ReadOnly Property Item(key As String) As RuleSettings

Parameters

key
String

The name of the RuleSettings object contained in the collection.

Property Value

A RuleSettings object.

Applies to