次の方法で共有


ISessionStateItemCollection.RemoveAt(Int32) メソッド

定義

コレクション内の指定したインデックス位置の項目を削除します。

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

パラメーター

index
Int32

コレクションから削除する項目のインデックス。

RemoveAt メソッドを実装する方法を次のコード例に示します。 インターフェイスの完全な実装の例については、インターフェイスの ISessionStateItemCollection 概要に記載されている例を ISessionStateItemCollection 参照してください。

public void RemoveAt(int index)
{
  if (index < 0 || index >= this.Count)
    throw new ArgumentOutOfRangeException("The specified index is not within the acceptable range.");

  pItems.RemoveAt(index);
  pDirty = true;
}
 Public Sub RemoveAt(index As Integer) Implements ISessionStateItemCollection.RemoveAt 
   If index < 0 OrElse index >= Me.Count Then _
     Throw New ArgumentOutOfRangeException("The specified index is not within the acceptable range.")

   pItems.RemoveAt(index)
   pDirty = True
 End Sub

注釈

メソッドの RemoveAt 実装では、 プロパティを Dirtytrue 設定して、実装内の値が ISessionStateItemCollection 変更されたことを示す必要があります。

RemoveAt 0 より小さいか、 以上の場合indexは、 メソッドの実装で例外をスローArgumentOutOfRangeExceptionするICollection.Count必要があります。

適用対象

こちらもご覧ください