Udostępnij za pośrednictwem


ProfileSettingsCollection.Add(ProfileSettings) Metoda

Definicja

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.

Dotyczy

Zobacz też