Returns the value of a field.

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

Syntax

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

Parameters

strFieldName
Type: System..::.String
The field name.
strValue
Type: System..::.String %
The value of the field, will be set by the method.

Return Value

Returns true on success (the field does exist and has no variables).

See Also