EventMappingSettingsCollection.Insert(Int32, EventMappingSettings) 方法

定义

将指定的 EventMappingSettings 对象添加到集合中的指定索引位置。

public:
 void Insert(int index, System::Web::Configuration::EventMappingSettings ^ eventMappingSettings);
public void Insert (int index, System.Web.Configuration.EventMappingSettings eventMappingSettings);
member this.Insert : int * System.Web.Configuration.EventMappingSettings -> unit
Public Sub Insert (index As Integer, eventMappingSettings As EventMappingSettings)

参数

index
Int32

集合中 EventMappingSettings 对象的有效索引。

eventMappingSettings
EventMappingSettings

要插入到集合中的 EventMappingSettings 对象。

例外

集合中已经存在要添加的 EventMappingSettings 对象,此索引无效或此集合为只读。

示例

下面的代码示例说明如何使用 Insert 方法。 此代码示例是为 HealthMonitoringSection 类提供的一个更大示例的一部分。

// Insert an EventMappingsSettings object into the EventMappings collection property.
healthMonitoringSection.EventMappings.Insert(1, 
    new EventMappingSettings("HeartBeats", "", 1, 2));
' Insert an EventMappingsSettings object into the EventMappings collection property.
healthMonitoringSection.EventMappings.Insert(1, _
    new EventMappingSettings("HeartBeats", "", 1, 2))

注解

如果 index 参数等于集合中的项数,则条目将追加到集合的末尾。

适用于

另请参阅