DictionaryBase Methods
.NET Framework 4.5
The DictionaryBase type exposes the following members.
| Name | Description | |
|---|---|---|
|
Clear | Clears the contents of the DictionaryBase instance. |
|
CopyTo | Copies the DictionaryBase elements to a one-dimensional Array at the specified index. |
|
Equals(Object) | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
|
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
|
GetEnumerator | Returns an IDictionaryEnumerator that iterates through the DictionaryBase instance. |
|
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
|
GetType | Gets the Type of the current instance. (Inherited from Object.) |
|
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
|
OnClear | Performs additional custom processes before clearing the contents of the DictionaryBase instance. |
|
OnClearComplete | Performs additional custom processes after clearing the contents of the DictionaryBase instance. |
|
OnGet | Gets the element with the specified key and value in the DictionaryBase instance. |
|
OnInsert | Performs additional custom processes before inserting a new element into the DictionaryBase instance. |
|
OnInsertComplete | Performs additional custom processes after inserting a new element into the DictionaryBase instance. |
|
OnRemove | Performs additional custom processes before removing an element from the DictionaryBase instance. |
|
OnRemoveComplete | Performs additional custom processes after removing an element from the DictionaryBase instance. |
|
OnSet | Performs additional custom processes before setting a value in the DictionaryBase instance. |
|
OnSetComplete | Performs additional custom processes after setting a value in the DictionaryBase instance. |
|
OnValidate | Performs additional custom processes when validating the element with the specified key and value. |
|
ToString | Returns a string that represents the current object. (Inherited from Object.) |
| Name | Description | |
|---|---|---|
|
AsParallel | Enables parallelization of a query. (Defined by ParallelEnumerable.) |
|
AsQueryable | Converts an IEnumerable to an IQueryable. (Defined by Queryable.) |
|
Cast<TResult> | Casts the elements of an IEnumerable to the specified type. (Defined by Enumerable.) |
|
OfType<TResult> | Filters the elements of an IEnumerable based on a specified type. (Defined by Enumerable.) |
| Name | Description | |
|---|---|---|
|
IDictionary.Add | Adds an element with the specified key and value into the DictionaryBase. |
|
IDictionary.Contains | Determines whether the DictionaryBase contains a specific key. |
|
IDictionary.Remove | Removes the element with the specified key from the DictionaryBase. |
|
IEnumerable.GetEnumerator | Returns an IEnumerator that iterates through the DictionaryBase. |