Default parameter provider.
Default constructor
public Void ParameterProvider()
The name of the parameter store object.
public IParameterStore ParameterStore { get; set; }
Parameters configuration for this provider.
public IParameterTreeNode ParameterTree { get; }
Checks whether parameterName exists.
public Boolean Exists(parameterName)
true if the parameter exists, otherwise false.
Name | Type | Summary |
---|---|---|
parameterName | String | The name of the parameter to check. |
Type | Summary |
---|---|
ArgumentNullOrEmptyException | Thrown when parameterName is null or empty. |
Get a parameter.
public Task<IParameter> GetAsync(parameterName)
The IParameter for the requested parameter.
Name | Type | Summary |
---|---|---|
parameterName | String | The name of the parameter to retrive. |
Type | Summary |
---|---|
ArgumentNullOrEmptyException | Thrown when parameterName is null or empty. |
MissingRequiredPropertyException | Thrown when the ParameterStore property is not set. |
ParameterDoesNotExistException | Thrown when the requested parameter does not exist. |
ParameterConfigurationException | Thrown when there is configuration error. |
ParameterException | Thrown when there is an error getting the parameter. |
In this document