ISessionStateItemCollection::RemoveAt Method (Int32)
.NET Framework (current version)
Deletes an item at a specified index from the collection.
Assembly: System.Web (in System.Web.dll)
Parameters
- index
-
Type:
System::Int32
The index of the item to remove from the collection.
In implementing the RemoveAt method, you should set the Dirty property to true to indicatevalues in the ISessionStateItemCollection implementation have been modified.
Your implementation of the RemoveAt method should throw an ArgumentOutOfRangeException exception if index is less than zero or is equal to or greater than ICollection::Count.
The following code example shows an implementation of the RemoveAt method. For an example of a complete implementation of the ISessionStateItemCollection interface, see the example provided in the ISessionStateItemCollection interface overview.
.NET Framework
Available since 2.0
Available since 2.0
Show: