Sdílet prostřednictvím


ProfileSettingsCollection.Add(ProfileSettings) Metoda

Definice

ProfileSettings Přidá objekt do kolekce.

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)

Parametry

profilesSettings
ProfileSettings

Objekt ProfileSettings , který chcete přidat do kolekce.

Výjimky

Objekt ProfileSettings , který chcete přidat, již v kolekci existuje nebo je kolekce jen pro čtení.

Příklady

Následující příklad kódu ukazuje, jak použít metodu Add . Tento příklad kódu je součástí většího příkladu HealthMonitoringSection pro třídu .


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

Poznámky

Kolekce již nesmí obsahovat ProfileSettings objekt se stejným názvem.

Platí pro

Viz také