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 オブジェクト。

適用対象