ClientTargetCollection.RemoveAt(Int32) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定したコレクション インデックス位置にある ClientTarget オブジェクトを削除します。
public:
void RemoveAt(int index);
public void RemoveAt (int index);
member this.RemoveAt : int -> unit
Public Sub RemoveAt (index As Integer)
パラメーター
- index
- Int32
削除する ClientTarget のコレクション インデックス。
例
次のコード例では、コレクションからオブジェクトをClientTargetClientTargetCollection削除します。
コレクションを取得する方法の詳細については、クラスの概要のコード例を ClientTargetCollection 参照してください。
// Remove the client target at the
// specified index from the collection.
clientTargets.RemoveAt(0);
// Update the configuration file.
if (!clientTargetSection.IsReadOnly())
configuration.Save();
' Remove the client target at the
' specified index from the collection.
clientTargets.RemoveAt(0)
' Update the configuration file.
If Not clientTargetSection.IsReadOnly() Then
configuration.Save()
End If
注釈
このメソッドは RemoveAt 、現在の add
階層レベルのセクション内 clientTarget
の要素を削除し、要素を remove
挿入します。 この要素は remove
、階層内の上位レベルの親構成ファイルで定義されている要素への add
参照を実質的に削除しますが、削除しません。