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 объект с тем же именем.