ParameterCollection.OnInsertComplete(Int32, Object) Method

Definition

Occurs after the Insert(Int32, Parameter) method completes.

protected:
 override void OnInsertComplete(int index, System::Object ^ value);
protected override void OnInsertComplete (int index, object value);
override this.OnInsertComplete : int * obj -> unit
Protected Overrides Sub OnInsertComplete (index As Integer, value As Object)

Parameters

index
Int32

The index in the collection that the Parameter was inserted at.

value
Object

The Parameter that was inserted into the ParameterCollection.

Remarks

The OnInsertComplete method is called to perform additional processing after the Insert method completes. It calls the OnParametersChanged method.

Notes to Inheritors

This method allows implementers to define processes that must be performed after inserting an element into the underlying collection. By defining this method, implementers can add functionality to inherited methods without having to override all other methods.

Applies to

See also