OnSetComplete(key, oldValue, newValue)
Performs additional custom processes after setting a value in the MfDictionaryBase instance.
key
The key of the element to locate.
oldValue
The old value of the element associated with key.
newValue
The new value of the element associated with key.
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 set.
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 setting the specified element in the underlying Hashtable. By defining this method, implementers can add functionality to inherited methods without having to override all other methods.
OnSet is invoked before the standard Set behavior, whereas OnSetComplete is invoked after the standard Set behavior.