Count |
Gets the number of elements contained in the DictionaryBase instance. |
Clear |
Clears the contents of the DictionaryBase instance. |
CopyTo |
Copies the DictionaryBase elements to a one-dimensional Array at the specified index. |
Equals (inherited from Object) |
Overloaded. Determines whether two Object instances are equal. |
GetEnumerator |
Returns an IDictionaryEnumerator that can iterate through the DictionaryBase instance. |
GetHashCode (inherited from Object) |
Serves as a hash function for a particular type, suitable for use in hashing algorithms and data structures like a hash table. |
GetType (inherited from Object) |
Gets the Type of the current instance. |
ToString (inherited from Object) |
Returns a String that represents the current Object. |
DictionaryBase Constructor |
Initializes a new instance of the DictionaryBase class. |
Dictionary |
Gets the list of elements contained in the DictionaryBase instance. |
InnerHashtable |
Gets the list of elements contained in the DictionaryBase instance. |
Finalize (inherited from Object) |
Overridden. Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
In C# and C++, finalizers are expressed using destructor syntax. |
MemberwiseClone (inherited from Object) |
Creates a shallow copy of the current 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. |
| 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 can iterate through the DictionaryBase. |
| System.Collections.ICollection.IsSynchronized | Gets a value indicating whether access to the DictionaryBase is synchronized (thread-safe). |
| System.Collections.ICollection.SyncRoot | Gets an object that can be used to synchronize access to the DictionaryBase instance. |
| System.Collections.IDictionary.IsFixedSize | Gets a value indicating whether the DictionaryBase has a fixed size. |
| System.Collections.IDictionary.IsReadOnly | Gets a value indicating whether the DictionaryBase is read-only. |
| System.Collections.IDictionary.Item | Gets or sets the value associated with the specified key. |
| System.Collections.IDictionary.Keys | Gets an ICollection containing the keys in the DictionaryBase. |
| System.Collections.IDictionary.Values | Gets an ICollection containing the values in the DictionaryBase. |