Bearbeiten

Share via


ProfileSettingsCollection.Add(ProfileSettings) Method

Definition

Adds a ProfileSettings object to the collection.

public:
 void Add(System::Web::Configuration::ProfileSettings ^ profilesSettings);
public void Add (System.Web.Configuration.ProfileSettings profilesSettings);
member this.Add : System.Web.Configuration.ProfileSettings -> unit
Public Sub Add (profilesSettings As ProfileSettings)

Parameters

profilesSettings
ProfileSettings

A ProfileSettings object to add to the collection.

Exceptions

The ProfileSettings object to add already exists in the collection, or the collection is read-only.

Examples

The following code example shows how to use the Add method. This code example is part of a larger example provided for the HealthMonitoringSection class.


// Get the current Enabled property value.
Boolean enabledValue = healthMonitoringSection.Enabled;

// Set the Enabled property to false.
healthMonitoringSection.Enabled = false;

' Get the current Enabled property value.
Dim enabledValue As Boolean = healthMonitoringSection.Enabled

' Set the Enabled property to False.
healthMonitoringSection.Enabled = False

Remarks

The collection must not already contain a ProfileSettings object with the same name.

Applies to

See also