IDataDictionary MethodsC# API
The IDataDictionary type exposes the following members.
Methods

  NameDescription
Public methodAdd
Merges another Data Dictionary into this one.
Public methodGet T (String)
Returns a reference to an object held in the dictionary.
Public methodGet T (String, T)
Returns a reference to an object held in the dictionary, or the defaultValue if the key cannot be found.
Public methodGetBoolean(String)
Returns a boolean value held in the dictionary.
Public methodGetBoolean(String, Boolean)
Returns a boolean value held in the dictionary, or the defaultValue if the key cannot be found.
Public methodGetDouble(String)
Returns a double value held in the dictionary.
Public methodGetDouble(String, Double)
Returns a double value held in the dictionary, or the defaultValue if the key cannot be found.
Public methodGetEnumerator
Gets an enumerator for iterating over the key/value pairs in this dictionary.
Public methodGetFloat(String)
Returns a float value held in the dictionary.
Public methodGetFloat(String, Single)
Returns a float value held in the dictionary, or the defaultValue if the key cannot be found.
Public methodGetInt(String)
Returns an integer value held in the dictionary.
Public methodGetInt(String, Int32)
Returns an integer value held in the dictionary, or the defaultValue if the key cannot be found.
Public methodGetList(String)
Returns a list value held in the dictionary.
Public methodGetList(String, ArrayList)
Returns a list held in the dictionary, or the defaultList if the key cannot be found.
Public methodGetLong(String)
Returns a long value held in the dictionary.
Public methodGetLong(String, Int64)
Returns a long value held in the dictionary, or the defaultValue if the key cannot be found.
Public methodGetString(String)
Returns a string value held in the dictionary.
Public methodGetString(String, String)
Returns a string value held in the dictionary, or the defaultValue if the key cannot be found.
Public methodHasKey
Determines whether the specified key is contained within the dictionary.
Public methodSet T 
Sets an object value in the dictionary.
Public methodSetBoolean
Sets a boolean value in the dictionary.
Public methodSetDouble
Sets a double value in the dictionary.
Public methodSetFloat
Sets a float value in the dictionary.
Public methodSetInt
Sets an integer value in the dictionary.
Public methodSetList
Sets a list value in the dictionary.
Public methodSetLong
Sets a long value in the dictionary.
Public methodSetString
Sets a string value in the dictionary.
Back to Top
See Also