The IDataDictionary type exposes the following members.
Back to Top
Back to Top
Methods
| Name | Description | |
|---|---|---|
| Add |
Merges another Data Dictionary into this one.
| |
| Get T (String) |
Returns a reference to an object held in the dictionary.
| |
| Get T (String, T) |
Returns a reference to an object held in the dictionary, or the defaultValue if the key cannot be found.
| |
| GetBoolean(String) |
Returns a boolean value held in the dictionary.
| |
| GetBoolean(String, Boolean) |
Returns a boolean value held in the dictionary, or the defaultValue if the key cannot be found.
| |
| GetDouble(String) |
Returns a double value held in the dictionary.
| |
| GetDouble(String, Double) |
Returns a double value held in the dictionary, or the defaultValue if the key cannot be found.
| |
| GetEnumerator |
Gets an enumerator for iterating over the key/value pairs in this dictionary.
| |
| GetFloat(String) |
Returns a float value held in the dictionary.
| |
| GetFloat(String, Single) |
Returns a float value held in the dictionary, or the defaultValue if the key cannot be found.
| |
| GetInt(String) |
Returns an integer value held in the dictionary.
| |
| GetInt(String, Int32) |
Returns an integer value held in the dictionary, or the defaultValue if the key cannot be found.
| |
| GetList(String) |
Returns a list value held in the dictionary.
| |
| GetList(String, ArrayList) |
Returns a list held in the dictionary, or the defaultList if the key cannot be found.
| |
| GetLong(String) |
Returns a long value held in the dictionary.
| |
| GetLong(String, Int64) |
Returns a long value held in the dictionary, or the defaultValue if the key cannot be found.
| |
| GetString(String) |
Returns a string value held in the dictionary.
| |
| GetString(String, String) |
Returns a string value held in the dictionary, or the defaultValue if the key cannot be found.
| |
| HasKey |
Determines whether the specified key is contained within the dictionary.
| |
| Set T |
Sets an object value in the dictionary.
| |
| SetBoolean |
Sets a boolean value in the dictionary.
| |
| SetDouble |
Sets a double value in the dictionary.
| |
| SetFloat |
Sets a float value in the dictionary.
| |
| SetInt |
Sets an integer value in the dictionary.
| |
| SetList |
Sets a list value in the dictionary.
| |
| SetLong |
Sets a long value in the dictionary.
| |
| SetString |
Sets a string value in the dictionary.
|
Properties
| Name | Description | |
|---|---|---|
| Keys |
Gets an enumerator that can be used to iterate over the keys in this dictionary.
| |
| Name |
Gets or sets the name of this dictionary.
| |
| ReadOnly |
Gets a value that indicates whether this dictionary is read-only.
|
See Also