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,
int value
) |
| Visual Basic (Declaration) |
|---|
Public Function SetSystemParameterValue ( _
fullParameterName As String, _
value As Integer _
) As Boolean |
| Visual C++ |
|---|
public:
bool SetSystemParameterValue(
String^ fullParameterName,
int value
) |
Parameters
- fullParameterName
- Type: System..::.String
The full name of the parameter, e.g., "Member_Control.ChapterPrompt" or "Contact.AddressSharingCompanyEnabled"
- value
- Type: System..::.Int32
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.
See Also