ProfileGroupSettingsCollection.Remove(String) メソッド

定義

ProfileGroupSettings オブジェクトをコレクションから削除します。

public:
 void Remove(System::String ^ name);
public void Remove(string name);
member this.Remove : string -> unit
Public Sub Remove (name As String)

パラメーター

name
String

コレクションから削除する ProfileGroupSettings オブジェクトの名前。

例外

コレクション内の指定したインデックスに ProfileGroupSettings オブジェクトがない、要素が既に削除されている、またはコレクションが読み取り専用です。

次のコード例は、 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> 要素を挿入します。 要素が現在の構成ファイルの適切なセクションで定義されている場合、そのエントリは構成ファイルから削除されます。 削除するオブジェクトはコレクション内に存在する必要があります。

適用対象

こちらもご覧ください