共用方式為


ProfilePropertySettingsCollection.Add(ProfilePropertySettings) 方法

定義

ProfilePropertySettings 物件加入至集合。

public:
 void Add(System::Web::Configuration::ProfilePropertySettings ^ propertySettings);
public void Add (System.Web.Configuration.ProfilePropertySettings propertySettings);
member this.Add : System.Web.Configuration.ProfilePropertySettings -> unit
Public Sub Add (propertySettings As ProfilePropertySettings)

參數

propertySettings
ProfilePropertySettings

要加入集合的 ProfilePropertySettings 物件。

例外狀況

要加入的 ProfilePropertySettings 物件已經存在於集合中,或者集合是唯讀的。

範例

下列程式碼範例示範如何使用 Add 方法。 此程式碼範例是提供給 類別之較大範例的 ProfileSection 一部分。

// Add a new PropertySettings to the group.
ProfilePropertySettings newProp = new ProfilePropertySettings("AvatarImage");
newProp.Type = "System.String, System.dll";
newPropGroup.PropertySettings.Add(newProp);
' Add a new PropertySettings to the group.
Dim newProp As ProfilePropertySettings = new ProfilePropertySettings("AvatarImage")
newProp.Type = "System.String, System.dll"
newPropGroup.PropertySettings.Add(newProp)

備註

集合不得已經包含 ProfilePropertySettings 具有相同名稱的 物件。

適用於

另請參閱