CommonWorkflowFunctionsGetSetting(ODataService, String, String, String) Method
Note: This API is now obsolete.
Get the specified setting from the WZP_SETTINGS table. If no such setting was found, then the specified default value is
returned.
Namespace: Scanjour.Workflow4.BaseAssembly: Scanjour.Workflow4.Base (in Scanjour.Workflow4.Base.dll) Version: 24.4.0.0 (24.4.0.0)
[ObsoleteAttribute("Please use CommonDatabaseFunctions.GetSetting(s)",
true)]
public static string GetSetting(
ODataService ctx,
string module,
string key,
string defaultValue
)
<ObsoleteAttribute("Please use CommonDatabaseFunctions.GetSetting(s)",
true)>
Public Shared Function GetSetting (
ctx As ODataService,
module As String,
key As String,
defaultValue As String
) As String
public:
[ObsoleteAttribute(L"Please use CommonDatabaseFunctions.GetSetting(s)",
true)]
static String^ GetSetting(
ODataService^ ctx,
String^ module,
String^ key,
String^ defaultValue
)
[<ObsoleteAttribute("Please use CommonDatabaseFunctions.GetSetting(s)",
true)>]
static member GetSetting :
ctx : ODataService *
module : string *
key : string *
defaultValue : string -> string
- ctx ODataService
- Provides access to the database.
- module String
- The module in which context the setting is stored.
- key String
- The key to the setting.
- defaultValue String
- The value that is returned if no such setting was found in the WZP_SETTINGS table.
StringThe value of the found setting or the default value.