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 具有相同名称的对象。