OnInsert(key, value)
Performs additional custom processes before inserting a new element into the MfDictionaryBase instance.
key
The key of the element to insert.
value
The value of the element to insert
Protected method.
The default implementation of this method is intended to be overridden by a derived class to perform some action before the specified element is inserted. The On* methods are invoked only on the instance returned by the Dictionary property, but not on the instance returned by the InnerHashtable property.
Notes to Implementers
This method allows implementers to define processes that must be performed before inserting the element into the underlying Hashtable. By defining this method, implementers can add functionality to inherited methods without having to override all other methods.
OnInsert is invoked before the standard Insert behavior, whereas OnInsertComplete is invoked after the standard Insert behavior.