| IConfigurationManagerGetAppSetting Method |
Gets the specified application setting
Namespace:
SanteDB.Core.Services
Assembly:
SanteDB.Core.Api (in SanteDB.Core.Api.dll) Version: 3.0.481-alpha
Syntax string GetAppSetting(
string key
)
Function GetAppSetting (
key As String
) As String
String^ GetAppSetting(
String^ key
)
abstract GetAppSetting :
key : string -> string
Parameters
- key
- Type: SystemString
The key of the setting to retrieve
Return Value
Type:
StringThe setting for
key or null if none
Remarks App settings are intended to provide implementers with an easy
way to store simple settings without requiring the implementation of a
IConfigurationSection class
See Also