ProfilePropertySettingsCollection.Remove(String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从集合中移除 ProfilePropertySettings 对象。
public:
void Remove(System::String ^ name);
public void Remove (string name);
member this.Remove : string -> unit
Public Sub Remove (name As String)
参数
- name
- String
要从集合中移除的 ProfilePropertySettings 对象的名称。
例外
示例
下面的代码示例说明如何使用 Remove 方法。 此代码示例是为类提供的大型示例的 ProfileSection 一部分。
// Remove a PropertySettings from the group.
newPropGroup.PropertySettings.Remove("AvatarImage");
newPropGroup.PropertySettings.RemoveAt(0);
' Remove a PropertySettings from the group.
newPropGroup.PropertySettings.Remove("AvatarImage")
newPropGroup.PropertySettings.RemoveAt(0)
注解
此方法将 remove
元素插入到配置文件的相应节中,用于在更高级别的配置文件中定义的任何元素。 如果元素在当前配置文件的相应部分中定义,则会从配置文件中删除其条目。 要删除的对象必须存在于集合中。