 | InitialConfigurationManagerGetAppSetting Method |
Gets the specified application setting
Namespace: SanteDB.Client.ConfigurationAssembly: SanteDB.Client (in SanteDB.Client.dll) Version: 3.0.2081-alpha+027e4605b77f83de5445cbcd55717223932d2452
Syntaxpublic string GetAppSetting(
string key
)
Public Function GetAppSetting (
key As String
) As String
public:
virtual String^ GetAppSetting(
String^ key
) sealed
abstract GetAppSetting :
key : string -> string
override GetAppSetting :
key : string -> string Parameters
- key String
- The key of the setting to retrieve
Return Value
StringThe setting for
key or null if none
Implements
IConfigurationManagerGetAppSetting(String)
RemarksApp settings are intended to provide implementers with an easy
way to store simple settings without requiring the implementation of a
IConfigurationSection class
See Also