Mono Class Library: Overview

System.Collections.DictionaryBase: Method Members

The methods of System.Collections.DictionaryBase are listed below. For a list of all members, see the DictionaryBase Members list.

See Also: Inherited members from System.Object

Public Methods

Clear()
Clears the contents of the dictionary
CopyTo(Array, int)
Copies the contents of the Dictionary into the target array.
GetEnumerator() : IDictionaryEnumerator
Returns an enumerator for the dictionary

Protected Methods

OnClear()
Hook invoked before the clear operation is performed on the DictionaryBase
OnClearComplete()
Hook invoked after the clear operation is performed on the DictionaryBase
OnGet(object, object) : object
Hook invoked while fetching data from the DictionaryBase.
OnInsert(object, object)
Hook invoked before inserting data into the DictionaryBase.
OnInsertComplete(object, object)
Hook invoked after inserting the data into the DictionaryBase
OnRemove(object, object)
Hook invoked before removing a key/value from the DictionaryBase.
OnRemoveComplete(object, object)
Hook invoked after removing a key/value from the DictionaryBase.
OnSet(object, object, object)
Hook invoked before changing a value for a key in the DictionaryBase.
OnSetComplete(object, object, object)
Hook invoked after changing a value for a key in the DictionaryBase.
OnValidate(object, object)
Hook invoked after the value has been validated.