Gets the value associated with the given system parameter

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

Syntax

C#
public string GetSystemParameterValue(
	iMISModule module,
	string parameterName
)
Visual Basic
Public Function GetSystemParameterValue ( _
	module As iMISModule, _
	parameterName As String _
) As String
Visual C++
public:
String^ GetSystemParameterValue(
	iMISModule module, 
	String^ parameterName
)

Parameters

module
Type: Asi.iBO.SystemConfig..::..iMISModule
The module that defines the parameter, e.g., for the parameter "Member_Control.ChapterPrompt" send iMISModule.Contacts
parameterName
Type: System..::..String
The parameter name, without the module, e.g., for the parameter "Member_Control.ChapterPrompt" send ChapterPrompt

Return Value

The value (short or long) assigned to that parameter, or the empty string if the parameter is not found

See Also