ProfileSettingsCollection.Insert(Int32, ProfileSettings) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Inserts the specified ProfileSettings object at the specified index in the collection.
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)
Parameters
- index
- Int32
The index of a ProfileSettings object in the collection.
- authorizationSettings
- ProfileSettings
A ProfileSettings object to insert into the collection.
Exceptions
The ProfileSettings object to add already exists in the collection, the index is invalid, or the collection is read-only.
Examples
The following code example shows how to use the Insert method. This code example is part of a larger example provided for the HealthMonitoringSection class.
// 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"))
Remarks
If the index
parameter equals the number of items in the collection, then the entry is appended to the end of the collection.