| SettingsDictionaryGetSetting Method (String, String) |
Gets a string setting with the specified default value.
Namespace:
Ookii.Jumbo.Jet.Jobs
Assembly:
Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 2.0.0
Syntax public string GetSetting(
string key,
string defaultValue
)
Public Function GetSetting (
key As String,
defaultValue As String
) As String
public:
String^ GetSetting(
String^ key,
String^ defaultValue
)
member GetSetting :
key : string *
defaultValue : string -> string
Parameters
- key
- Type: SystemString
The name of the setting. - defaultValue
- Type: SystemString
The value to use if the setting is not present in the SettingsDictionary.
Return Value
Type:
StringThe value of the setting, or
defaultValue if the setting was not present in the
SettingsDictionary.
See Also