Click or drag to resize

OutputSettingValuesContainerSetSettingValue Method

Sets the value of the setting with the name specified to the value specified, overwriting the existing value.

Namespace:  SD.LLBLGen.Pro.ApplicationCore.Configuration
Assembly:  SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.9.0.0 (5.9.0)
Syntax
public void SetSettingValue(
	string settingName,
	Object value,
	bool updateValueIfExists = true
)

Parameters

settingName
Type: SystemString
Name of the setting.
value
Type: SystemObject
The value.
updateValueIfExists (Optional)
Type: SystemBoolean
If true (default) it will update the value of the setting if it exists in this container with the value specified. If false, it will leave the value alone if it exists
See Also