StateManagedCollection.OnRemoveComplete(Int32, Object) Método

Definição

Quando substituído em uma classe derivada, executa o trabalho adicional após o método IList.Remove(Object) ou IList.RemoveAt(Int32) remover o item especificado da coleção.When overridden in a derived class, performs additional work after the IList.Remove(Object) or IList.RemoveAt(Int32) method removes the specified item from the collection.

protected:
 virtual void OnRemoveComplete(int index, System::Object ^ value);
protected virtual void OnRemoveComplete (int index, object value);
abstract member OnRemoveComplete : int * obj -> unit
override this.OnRemoveComplete : int * obj -> unit
Protected Overridable Sub OnRemoveComplete (index As Integer, value As Object)

Parâmetros

index
Int32

O índice baseado em zero do item a ser removido, que é usado quando IList.RemoveAt(Int32) é chamado.The zero-based index of the item to remove, which is used when IList.RemoveAt(Int32) is called.

value
Object

O objeto removido do StateManagedCollection, que é usado quando IList.Remove(Object) é chamado.The object removed from the StateManagedCollection, which is used when IList.Remove(Object) is called.

Comentários

Coleções derivadas de StateManagedCollection podem substituir o OnRemoveComplete método para executar qualquer trabalho adicional depois que um item é removido da coleção usando o IList.Remove IList.RemoveAt método ou.Collections derived from StateManagedCollection can override the OnRemoveComplete method to perform any additional work after an item is removed from the collection using the IList.Remove or IList.RemoveAt method.

Aplica-se a

Confira também