RuleSettingsCollection.Insert(Int32, RuleSettings) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定した RuleSettings オブジェクトを、コレクションの指定したインデックス位置に追加します。
public:
void Insert(int index, System::Web::Configuration::RuleSettings ^ eventSettings);
public void Insert (int index, System.Web.Configuration.RuleSettings eventSettings);
member this.Insert : int * System.Web.Configuration.RuleSettings -> unit
Public Sub Insert (index As Integer, eventSettings As RuleSettings)
パラメーター
- index
- Int32
RuleSettings オブジェクトの、コレクション内での有効なインデックス。
- eventSettings
- RuleSettings
コレクションに挿入する RuleSettings オブジェクト。
例外
追加する RuleSettings オブジェクトが既にコレクションに存在しているか、インデックスが無効か、またはコレクションが読み取り専用です。
例
Insert メソッドを使用するコード例を次に示します。 このコード例は、HealthMonitoringSection クラスのために提供されている大規模な例の一部です。
// Insert an RuleSettings object into the Rules collection property.
healthMonitoringSection.Rules.Insert(1,
new RuleSettings("All Errors Default2",
"All Errors", "EventLogProvider"));
' Insert an RuleSettings object into the Rules collection property.
healthMonitoringSection.Rules.Insert(1, _
new RuleSettings("All Errors Default2", _
"All Errors", "EventLogProvider"))
注釈
index パラメーターがコレクション内の項目の数と等しい場合、エントリはコレクションの末尾に追加されます。