Click or drag to resize
SettingsFileParserGetSettingsFileVariable Delegate
Declares a delegate that is called to get the value of a variable. when it is not specified in the settings file.

Namespace: Avaya.ClientServices
Assembly: AvayaClientServices (in AvayaClientServices.dll) Version: 493.0.70.0
Syntax
C#
public delegate string GetSettingsFileVariable(
	string name
)

Parameters

name
Type: SystemString
The variable name.

Return Value

Type: String
True if the value of the variable exists; otherwise NULL.
Remarks
When the parser encounters statement like: IF $VARIABLE SEQ 1 GOTO JUMP If the variable exists the value should be returned. If the value does not exist, this method should return NULL and the test will be skipped.
See Also