Checks to see if the code supplied exists in the lookup table referenced in lookupKey. If so, and a substitute is defined for the code, the substitute is returned in the substitute parameter.

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

Syntax

C#
public bool CheckLookupCode(
	string code,
	string lookupKey,
	ref string substitute
)
Visual Basic (Declaration)
Public Function CheckLookupCode ( _
	code As String, _
	lookupKey As String, _
	ByRef substitute As String _
) As Boolean
Visual C++
public:
bool CheckLookupCode(
	String^ code, 
	String^ lookupKey, 
	String^% substitute
)

Parameters

code
Type: System..::.String
The code to check
lookupKey
Type: System..::.String
The "table" to look in
substitute
Type: System..::.String %
The substitute value found for the code, if any. Returned by reference.

Return Value

True if the code was found in the referenced table. False if not.

See Also