ProfileSettingsCollection.Add(ProfileSettings) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将 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 同名的对象。