Method GetData
GetData<T>(string, T, bool)
Get data via a specified key.
Declaration
public T GetData<T>(string key, T defaultValue, bool addDefault = false)
Parameters
| Type | Name | Description | 
|---|---|---|
| string | key | The key.  | 
    
| T | defaultValue | The default value to return if the data is not found.  | 
    
| bool | addDefault | Optional parameter to control whether to add the default value if the data is not found.  | 
    
Returns
| Type | Description | 
|---|---|
| T | The data.  | 
    
Type Parameters
| Name | Description | 
|---|---|
| T | The data type.  |