Mono Class Library: Overview

System.Collections.DictionaryBase: Members

The members of System.Collections.DictionaryBase are listed below.

See Also: Inherited members from System.Object

Protected Constructors

Default constructor.

Public Properties

[read-only]
Countint. Returns the number of items in the dictionary

Protected Properties

[read-only]
DictionaryIDictionary. The collection contained as an IDictionary
[read-only]
InnerHashtableHashtable. The internal Hashtable representation for this dictionary

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.

Explicitly Implemented Interface Members

IDictionary.AddDocumentation for this section has not yet been entered.
IDictionary.ContainsDocumentation for this section has not yet been entered.
IEnumerable.GetEnumeratorDocumentation for this section has not yet been entered.
[read-only]
IDictionary.IsFixedSizebool. Documentation for this section has not yet been entered.
[read-only]
IDictionary.IsReadOnlybool. Documentation for this section has not yet been entered.
[read-only]
ICollection.IsSynchronizedbool. Documentation for this section has not yet been entered.
IDictionary.Itemobject. Documentation for this section has not yet been entered.
[read-only]
IDictionary.KeysICollection. Documentation for this section has not yet been entered.
IDictionary.RemoveDocumentation for this section has not yet been entered.
[read-only]
ICollection.SyncRootobject. Documentation for this section has not yet been entered.
[read-only]
IDictionary.ValuesICollection. Documentation for this section has not yet been entered.

Extension Methods

static
AsQueryable(this IEnumerable) : System.Linq.IQueryable
Documentation for this section has not yet been entered.
static
Cast<TResult>(this IEnumerable) : IEnumerable<TResult>
Documentation for this section has not yet been entered.
static
OfType<TResult>(this IEnumerable) : IEnumerable<TResult>
Documentation for this section has not yet been entered.