Defines a service to get and set parameter values.
Gets a parameter value as boolean.
public Boolean GetBoolean(name)The value of the parámeter as boolean.
| Name | Type | Summary |
|---|---|---|
| name | String | The name of the parameter to retrive it's value. |
Gets a parameter value as boolean.
public Task GetBooleanAsync(name)The value of the parámeter as boolean.
| Name | Type | Summary |
|---|---|---|
| name | String | The name of the parameter to retrive it's value. |
Gets a parameter value as an integer.
public Int32 GetInteger(name)The value of the parámeter as integer.
| Name | Type | Summary |
|---|---|---|
| name | String | The name of the parameter to retrive it's value. |
Gets a parameter value as an integer.
public Task GetIntegerAsync(name)The value of the parámeter as integer.
| Name | Type | Summary |
|---|---|---|
| name | String | The name of the parameter to retrive it's value. |
Gets a parameter value as a string.
public String GetString(name)The value of the parámeter as string.
| Name | Type | Summary |
|---|---|---|
| name | String | The name of the parameter to retrive it's value. |
Gets a parameter value as a string.
public Task GetStringAsync(name)The value of the parámeter as string.
| Name | Type | Summary |
|---|---|---|
| name | String | The name of the parameter to retrive it's value. |
Returns a parameter tree as a DTO including the parameter values from the store is required.
public ParameterTreeNodeDto LoadParametersTree(includeStoredValues)| Name | Type | Summary |
|---|---|---|
| includeStoredValues | Boolean | Whether the values from the store must be included. |
Returns a parameter tree as a DTO including the parameter values from the store is required.
public ParameterTreeNodeDto LoadParametersTree(groupName, includeStoredValues)| Name | Type | Summary |
|---|---|---|
| groupName | String | Name of the group from where to start loading parameters. |
| includeStoredValues | Boolean | Whether the values from the store must be included. |
Returns a parameter tree as a DTO including the parameter values from the store is required.
public Task LoadParametersTreeAsync(includeStoredValues)| Name | Type | Summary |
|---|---|---|
| includeStoredValues | Boolean | Whether the values from the store must be included. |
Returns a parameter tree as a DTO including the parameter values from the store is required.
public Task LoadParametersTreeAsync(groupName, includeStoredValues)| Name | Type | Summary |
|---|---|---|
| groupName | String | Name of the group from where to start loading parameters. |
| includeStoredValues | Boolean | Whether the values from the store must be included. |
Sets the value of the parameter.
public Void SetValue(name, value)| Name | Type | Summary |
|---|---|---|
| name | String | The name of the parameter to set it's value. |
| value | String | The value to be set. |
Sets the value of the parameter.
public Task SetValueAsync(name, value)| Name | Type | Summary |
|---|---|---|
| name | String | The name of the parameter to set it's value. |
| value | String | The value to be set. |