次の方法で共有


RuleSettingsCollection.Insert(Int32, RuleSettings) メソッド

定義

指定した 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 パラメーターがコレクション内の項目の数と等しい場合、エントリはコレクションの末尾に追加されます。

適用対象

こちらもご覧ください