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"))

注解

如果索引参数等于集合中的项数,则将该项追加到集合末尾。

适用于

另请参阅