ProfilePropertySettingsCollection.Add(ProfilePropertySettings) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將 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 具有相同名稱的 物件。