GlobalSettingHelperUpdateSetting Method (String, String, Boolean) |
Updates the setting.
Namespace:
Atomia.Billing.Core.Sdk.BusinessLogic
Assembly:
Atomia.Billing.Core.Sdk (in Atomia.Billing.Core.Sdk.dll) Version: 18.10.7096.28998
Syntax public static bool UpdateSetting(
string settingName,
string settingValue,
bool createIfNonexistent
)
Public Shared Function UpdateSetting (
settingName As String,
settingValue As String,
createIfNonexistent As Boolean
) As Boolean
public:
static bool UpdateSetting(
String^ settingName,
String^ settingValue,
bool createIfNonexistent
)
static member UpdateSetting :
settingName : string *
settingValue : string *
createIfNonexistent : bool -> bool
Parameters
- settingName
- Type: SystemString
Name of the setting. - settingValue
- Type: SystemString
The setting value. - createIfNonexistent
- Type: SystemBoolean
If set to true new setting will be created if it doesn't exist.
Return Value
Type:
Booleantrue if update was suffessfull, otherwise
false.
See Also