Читати англійською Редагувати

Поділитися через


DictionaryBase.OnRemoveComplete(Object, Object) Method

Definition

Performs additional custom processes after removing an element from the DictionaryBase instance.

C#
protected virtual void OnRemoveComplete(object key, object value);
C#
protected virtual void OnRemoveComplete(object key, object? value);

Parameters

key
Object

The key of the element to remove.

value
Object

The value of the element to remove.

Remarks

The default implementation of this method is intended to be overridden by a derived class to perform some action after the specified element is removed.

The On* methods are invoked only on the instance returned by the Dictionary property, but not on the instance returned by the InnerHashtable property.

The default implementation of this method is an O(1) operation.

Notes to Inheritors

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

OnRemove(Object, Object) is invoked before the standard Remove behavior, whereas OnRemoveComplete(Object, Object) is invoked after the standard Remove behavior.

Applies to

Продукт Версії
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1
UWP 10.0

See also