Freigeben über


ProfileSettingsCollection.Add(ProfileSettings) Methode

Definition

Fügt der Auflistung ein ProfileSettings-Objekt hinzu.

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)

Parameter

profilesSettings
ProfileSettings

Ein der Auflistung hinzuzufügendes ProfileSettings-Objekt.

Ausnahmen

Das hinzuzufügende ProfileSettings-Objekt ist in der Auflistung bereits vorhanden, oder die Auflistung ist schreibgeschützt.

Beispiele

Im folgenden Codebeispiel wird die Verwendung der Add-Methode veranschaulicht. Dieses Codebeispiel ist Teil eines größeren Beispiels, das für die HealthMonitoringSection Klasse bereitgestellt wird.


// 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

Hinweise

Die Auflistung darf kein Objekt mit demselben Namen enthalten ProfileSettings .

Gilt für

Siehe auch