次の方法で共有


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 含めてはいけません。

適用対象

こちらもご覧ください