Allows the implementation of a class that represents a configuration parameter.
Gets the parameter configuration.
public ParameterConfiguration Configuration { get; }
An implementation of IParameterStore used to get/set parameter values.
public IParameterStore Store { get; }
Returns the parameter value as boolean.
public Task<Boolean> GetBooleanAsync()
The value of the parameter as boolean.
Returns the parameter value as integer.
public Task<Int32> GetIntegerAsync()
The value of the parameter as integer.
Returns the parameter value as a string.
public Task<String> GetStringAsync()
The valua of the parameter as string.
Sets the parameter value;
public Task SetValueAsync(value)
Name | Type | Summary |
---|---|---|
value | Object | The value to be set for the parameter. |
In this document