This documentation is archived and is not being maintained.

ServiceDescriptionBaseCollection.OnRemove Method

Removes an element from the ServiceDescriptionBaseCollection.

[Visual Basic]
Overrides Protected Sub OnRemove( _
   ByVal index As Integer, _
   ByVal value As Object _
)
[C#]
protected override void OnRemove(
 int index,
 object value
);
[C++]
protected: void OnRemove(
 int index,
 Object* value
);
[JScript]
protected override function OnRemove(
   index : int,
 value : Object
);

Parameters

index
The zero-based index of the value parameter to be removed.
value
The element to remove from the collection.

Remarks

This method is intended to be overridden to perform additional processes, such as validation, when an element is removed from the collection.

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: