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 同名的对象。

适用于

另请参阅