Share via


RuleSettingsCollection.Item[] 属性

定义

获取一个 BufferModeSettings 对象。

重载

Item[Int32]

获取位于指定数字索引位置的 RuleSettings 对象。

Item[String]

根据集合中的指定键获取 RuleSettings 对象。

Item[Int32]

获取位于指定数字索引位置的 RuleSettings 对象。

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

参数

index
Int32

集合中 RuleSettings 对象的索引。

属性值

指定索引处的 RuleSettings 对象。

例外

索引超出范围。

示例

下面的代码示例说明如何使用 Item[] 方法。 此代码示例是为 HealthMonitoringSection 类提供的一个更大示例的一部分。

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

注解

RuleSettings指定索引处的对象必须存在。

另请参阅

适用于

Item[String]

根据集合中的指定键获取 RuleSettings 对象。

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

参数

key
String

集合中包含的 RuleSettings 对象的名称。

属性值

RuleSettings 对象。

适用于