ProfileSettingsCollection.Add(ProfileSettings) Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
ProfileSettings Dodaje obiekt do kolekcji.
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
ProfileSettings Obiekt do dodania do kolekcji.
Wyjątki
Obiekt do dodania ProfileSettings już istnieje w kolekcji lub kolekcja jest tylko do odczytu.
Przykłady
W poniższym przykładzie kodu pokazano, jak używać Add metody . Ten przykład kodu jest częścią większego przykładu podanego HealthMonitoringSection dla klasy.
// 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
Uwagi
Kolekcja nie może już zawierać ProfileSettings obiektu o tej samej nazwie.