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 System.Web.Configuration.RuleSettings this[int index] { get; set; }

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];

Remarks

A RuleSettings object at the specified index must exist.

See also

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

Item[String]

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

public System.Web.Configuration.RuleSettings this[string key] { get; }

Parameters

key
String

The name of the RuleSettings object contained in the collection.

Property Value

A RuleSettings object.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1