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 具有相同名稱的物件。