IParameterStore

Allows the implementation of a store for parameters

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

Methods

GetValueAsync

Gets the value of the parameter named name.

Signature:
public Task<String> GetValueAsync(name)
Returns

Current value of the parameter.

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

SaveValueAsync

Saves the parameter value to the repository.

Signature:
public Task SaveValueAsync(name, value)
Parameters
Name Type Summary
name String The name of the parameter to save.
value String The value to be saved.