StateManagedCollection::OnRemoveComplete Method (Int32, Object^)

 

When overridden in a derived class, performs additional work after the IList::Remove or IList::RemoveAt method removes the specified item from the collection.

Namespace:   System.Web.UI
Assembly:  System.Web (in System.Web.dll)

protected:
virtual void OnRemoveComplete(
	int index,
	Object^ value
)

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 removed from the StateManagedCollection, which is used when IList::Remove is called.

Collections derived from StateManagedCollection can override the OnRemoveComplete method to perform any additional work after an item is removed from the collection using the IList::Remove or IList::RemoveAt method.

.NET Framework
Available since 2.0
Return to top
Show: