Interface IConfigurationSetting
The configuration setting.
Namespace: DotNetNuke.Abstractions.Settings
Assembly: DotNetNuke.Abstractions.dll
Syntax
public interface IConfigurationSetting
Properties
| Improve this Doc View SourceIsSecure
Gets or sets a value indicating whether if the configuration setting is secure.
Declaration
bool IsSecure { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Key
Gets or sets the configuration key.
Declaration
string Key { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Value
Gets or sets the configuraiton value.
Declaration
string Value { get; set; }
Property Value
Type | Description |
---|---|
System.String |