ParameterCollection.OnRemoveComplete(Int32, Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs after the Remove(Parameter) method completes.
protected:
override void OnRemoveComplete(int index, System::Object ^ value);
protected override void OnRemoveComplete (int index, object value);
override this.OnRemoveComplete : int * obj -> unit
Protected Overrides Sub OnRemoveComplete (index As Integer, value As Object)
Parameters
- value
- Object
The Parameter that was removed from the ParameterCollection.
Remarks
The OnRemoveComplete method is called to perform additional processing after the Remove method completes. It calls the OnParametersChanged method.
Notes to Inheritors
This method allows implementers to define processes that must be performed after removing an element from the underlying collection. By defining this method, implementers can add functionality to inherited methods without having to override all other methods.