ISessionStateItemCollection.RemoveAt メソッドとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > ISessionStateItemCollection.RemoveAt メソッドの意味・解説 

ISessionStateItemCollection.RemoveAt メソッド

メモ : このメソッドは、.NET Framework version 2.0新しく追加されたものです。

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

名前空間: System.Web.SessionState
アセンブリ: System.Web (system.web.dll 内)
構文構文

Sub RemoveAt ( _
    index As Integer _
)
Dim instance As ISessionStateItemCollection
Dim index As Integer

instance.RemoveAt(index)
void RemoveAt (
    int index
)
void RemoveAt (
    int index
)
void RemoveAt (
    int index
)
function RemoveAt (
    index : int
)

パラメータ

index

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

解説解説

RemoveAt メソッド実装するときは、Dirty プロパティtrue設定して ISessionStateItemCollection の実装の値が変更されていないことを示す必要があります

index が負の場合、または ICollection.Count 以上の場合RemoveAt メソッド実装は ArgumentOutOfRangeException 例外スローする必要があります

使用例使用例

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

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
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;
}
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
ISessionStateItemCollection インターフェイス
ISessionStateItemCollection メンバ
System.Web.SessionState 名前空間
その他の技術情報
ASP.NETセッション状態


このページでは「.NET Framework クラス ライブラリ リファレンス」からISessionStateItemCollection.RemoveAt メソッドを検索した結果を表示しています。
Weblioに収録されているすべての辞書からISessionStateItemCollection.RemoveAt メソッドを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からISessionStateItemCollection.RemoveAt メソッド を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

ISessionStateItemCollection.RemoveAt メソッドのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



ISessionStateItemCollection.RemoveAt メソッドのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS