This documentation is archived and is not being maintained.
ServiceDescriptionBaseCollection.OnInsertComplete Method
.NET Framework 1.1
Performs additional custom processes after inserting a new element into the ServiceDescriptionBaseCollection.
[Visual Basic] Overrides Protected Sub OnInsertComplete( _ ByVal index As Integer, _ ByVal value As Object _ ) [C#] protected override void OnInsertComplete( int index, object value ); [C++] protected: void OnInsertComplete( int index, Object* value ); [JScript] protected override function OnInsertComplete( index : int, value : Object );
Parameters
- index
- The zero-based index at which to insert the value parameter.
- value
- 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.
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
See Also
ServiceDescriptionBaseCollection Class | ServiceDescriptionBaseCollection Members | System.Web.Services.Description Namespace
Show: