Method TryGetDataDictionary
TryGetDataDictionary(string, Dictionary<string, object>)
Try to find the dictionary of data with the given name and deserialize it into the given dictionary.
Declaration
public bool TryGetDataDictionary(string dictionaryName, Dictionary<string, object> dataDictionary)
Parameters
Type | Name | Description |
---|---|---|
string | dictionaryName | The name of the dictionary to retrieve. |
Dictionary<string, object> | dataDictionary | A dictionary of data to fill with the found data. It must not be null and it will be cleared even if no dictionary is found. |
Returns
Type | Description |
---|---|
bool | Returns true if the dictionary was found and deserialized into the given dictionary; returns false otherwise. |