RuleSettingsCollection.Item[] 属性
定义
获取一个 BufferModeSettings 对象。Gets a BufferModeSettings object.
重载
| Item[Int32] |
获取位于指定数字索引位置的 RuleSettings 对象。Gets the RuleSettings object at the specified numeric index. |
| Item[String] |
根据集合中的指定键获取 RuleSettings 对象。Gets the RuleSettings object based on the specified key in the collection. |
Item[Int32]
获取位于指定数字索引位置的 RuleSettings 对象。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
参数
- index
- Int32
集合中 RuleSettings 对象的索引。The index of a RuleSettings object in the collection.
属性值
指定索引处的 RuleSettings 对象。The RuleSettings object at the specified index.
例外
索引超出范围。Index is out of range.
示例
下面的代码示例说明如何使用 Item[] 方法。The following code example shows how to use the Item[] method. 此代码示例是为类提供的更大示例的一部分 HealthMonitoringSection 。This code example is part of a larger example provided for the HealthMonitoringSection class.
ruleSetting = healthMonitoringSection.Rules[i];
ruleSetting = healthMonitoringSection.Rules(i)
注解
RuleSettings位于指定索引处的对象必须存在。A RuleSettings object at the specified index must exist.
另请参阅
适用于
Item[String]
根据集合中的指定键获取 RuleSettings 对象。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
参数
- key
- String
集合中包含的 RuleSettings 对象的名称。The name of the RuleSettings object contained in the collection.
属性值
RuleSettings 对象。A RuleSettings object.