Sets the value associated with the given system parameter

Namespace:  Asi.iBO.SystemConfig
Assembly:  Asi.iBO (in Asi.iBO.dll) Version: 15.1.2.0

Syntax

C#
public bool SetSystemParameterValue(
	string fullParameterName,
	string value
)
Visual Basic (Declaration)
Public Function SetSystemParameterValue ( _
	fullParameterName As String, _
	value As String _
) As Boolean
Visual C++
public:
bool SetSystemParameterValue(
	String^ fullParameterName, 
	String^ value
)

Parameters

fullParameterName
Type: System..::.String
The full name of the parameter, e.g., "Member_Control.ChapterPrompt" or "Contact.AddressSharingCompanyEnabled"
value
Type: System..::.String
The value to assigned to that parameter

Return Value

True if the parameter's value was updated; false if the parameter could not be found.

Remarks

This method will only update existing parameters. It will not create parameters that do not already exist.

See Also