Interface IReadWriteConfiguration
Inherited Members
Namespace: Experior.Interfaces.ApplicationSettings
Assembly: Experior.Interfaces.dll
Syntax
public interface IReadWriteConfiguration : IReadOnlyConfiguration, IConfigurationRepository
Methods
RemoveValue(String)
Declaration
void RemoveValue(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name |
SetValue<T>(String, T)
Sets the specified key/value pair. Will add or update
Declaration
void SetValue<T>(string key, T value)
Parameters
Type | Name | Description |
---|---|---|
System.String | key | The key of the value to store. |
T | value | The data to be stored. |
Type Parameters
Name | Description |
---|---|
T |
Exceptions
Type | Condition |
---|---|
System.ArgumentNullException |
|