ServiceDescriptionBaseCollection.OnInsertComplete(Int32, Object) Method

Definition

Performs additional custom processes after inserting a new element into the ServiceDescriptionBaseCollection.

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 zero-based index at which to insert the value parameter.

value
Object

The element to insert into the collection.

Remarks

The default implementation of this method is intended to be overridden by a derived class to perform some action when the specified element is inserted. For example, a derived class might need additional validation.

This protected method is accessible only through this class or a derived class.

Applies to