ProfileSettingsCollection.Add(ProfileSettings) Метод

Определение

Добавляет объект ProfileSettings в коллекцию.

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)

Параметры

profilesSettings
ProfileSettings

Объект ProfileSettings для добавления в коллекцию.

Исключения

Добавляемый объект ProfileSettings уже существует в коллекции, или коллекция доступна только для чтения.

Примеры

В следующем примере кода показано применение метода Add. Этот пример кода является частью более крупного примера, предоставленного HealthMonitoringSection для класса.


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

Комментарии

Коллекция не должна содержать ProfileSettings объект с тем же именем.

Применяется к

См. также раздел