StateManagedCollection.OnRemove Method (Int32, Object)
.NET Framework (current version)
When overridden in a derived class, performs additional work before the IList.Remove or IList.RemoveAt method removes the specified item from the collection.
Assembly: System.Web (in System.Web.dll)
abstract OnRemove : index:int * value:Object -> unit override OnRemove : index:int * value:Object -> unit
Parameters
- index
-
Type:
System.Int32
The zero-based index of the item to remove, which is used when IList.RemoveAt is called.
- value
-
Type:
System.Object
The object to remove from the StateManagedCollection, which is used when IList.Remove is called.
Collections derived from StateManagedCollection can override the OnRemove method to perform any additional work before an item is removed from the collection using the IList.Remove or IList.RemoveAt method.
.NET Framework
Available since 2.0
Available since 2.0
Show: