Returns the value of a global variable.

Namespace:  InfigoSDK
Assembly:  InfigoSDK (in InfigoSDK.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public bool GetGlobalValue(
	string strGlobalName,
	out string strValue
)
Visual Basic (Declaration)
Public Function GetGlobalValue ( _
	strGlobalName As String, _
	<OutAttribute> ByRef strValue As String _
) As Boolean
Visual C++
public:
bool GetGlobalValue(
	String^ strGlobalName, 
	[OutAttribute] String^% strValue
)

Parameters

strGlobalName
Type: System..::.String
The global variable name.
strValue
Type: System..::.String %
The value of the variable, will be set by the method.

Return Value

Returns true on success (the global variable exists).

See Also