ProfileSettingsCollection.Insert(Int32, ProfileSettings) 方法

定义

将指定的 ProfileSettings 对象插入集合中的指定索引位置。

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

参数

index
Int32

集合中 ProfileSettings 对象的索引。

authorizationSettings
ProfileSettings

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

例外

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

示例

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

// Insert an ProfileSettings object into the Profiles collection property.
healthMonitoringSection.Profiles.Insert(1, new ProfileSettings("Default2"));
' Insert an ProfileSettings object into the Profiles collection property.
healthMonitoringSection.Profiles.Insert(1, new ProfileSettings("Default2"))

注解

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

适用于

另请参阅