次の方法で共有


CustomErrorCollection.RemoveAt(Int32) メソッド

定義

指定したインデックス位置にある CustomError オブジェクトをコレクションから削除します。

public:
 void RemoveAt(int index);
public void RemoveAt (int index);
member this.RemoveAt : int -> unit
Public Sub RemoveAt (index As Integer)

パラメーター

index
Int32

削除する CustomError オブジェクトのコレクション インデックス。

次のコード例は、指定したインデックス位置にあるオブジェクトを CustomError 削除する方法を示しています。 コレクションを取得する方法については、クラス トピックの CustomErrorCollection コード例を参照してください。

// Using method RemoveAt.
if (!customErrorsSection.SectionInformation.IsLocked)
{
    // Remove the error at 0 index
    customErrorsCollection.RemoveAt(0);
    configuration.Save();
}
' Using method RemoveAt.
If Not customErrorsSection.SectionInformation.IsLocked Then
   ' Remove the error at 0 index
   customErrorsCollection.RemoveAt(0)
   configuration.Save()
End If

注釈

このメソッドは RemoveAt 、現在の remove 階層レベルの構成ファイルのセクションに要素 customErrors を挿入します。 これは、階層内の上位レベルの親構成ファイルで定義されている要素への add 参照を削除するためです。

メモ 要素は add 親構成ファイルから削除されません。 これらは単に非アクティブ化されます。 ただし、メソッドは RemoveAt 実際には現在の階層レベルでそれらを削除します。

適用対象