IParameterProvider

Allows the implementation of parameter providers.

Namespace:
Inetdev.Parameters
Type:
Interface
Public:
Yes
Protected:
No
Sealed:
No
Abstract:
Yes

Properties

ParameterStore

The name of the parameter store object.

Signature:
public IParameterStore ParameterStore { get; }

ParameterTree

Parameters configuration for this provider.

Signature:
public IParameterTreeNode ParameterTree { get; }

Methods

Exists

Checks whether parameterName exists.

Signature:
public Boolean Exists(parameterName)
Returns

true if the parameter exists.

Parameters
Name Type Summary
parameterName String The name of the parameter to check.

GetAsync

Get a parameter.

Signature:
public Task<IParameter> GetAsync(parameterName)
Returns

The IParameter for the requested parameter.

Parameters
Name Type Summary
parameterName String The name of the parameter to retrive.