CollectionBase.OnRemoveComplete Method
Performs additional custom processes after removing an element from the CollectionBase instance.
[Visual Basic] Protected Overridable Sub OnRemoveComplete( _ ByVal index As Integer, _ ByVal value As Object _ ) [C#] protected virtual void OnRemoveComplete( int index, object value ); [C++] protected: virtual void OnRemoveComplete( int index, Object* value ); [JScript] protected function OnRemoveComplete( index : int, value : Object );
Parameters
- index
- The zero-based index at which value can be found.
- value
- The value of the element to remove from index.
Remarks
The default implementation of this method is intended to be overridden by a derived class to perform some action after the specified element is removed.
The On* methods are invoked only on the instance returned by the List property, but not on the instance returned by the InnerList property.
Notes to Implementers:
This method allows implementers to define processes that must be performed after removing the element from the underlying System.Collections.ArrayList. By defining this method, implementers can add functionality to inherited methods without having to override all other methods.
OnRemove is invoked before the standard Remove behavior, whereas OnRemoveComplete is invoked after the standard Remove behavior.
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, .NET Compact Framework
See Also
CollectionBase Class | CollectionBase Members | System.Collections Namespace | OnRemove | OnClearComplete