Find the function return type given the function name and the first argument expression node.

Namespace: NHibernate.Hql.Ast.ANTLR
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
public IType FindFunctionReturnType(
	string functionName,
	IASTNode first
)
Visual Basic
Public Function FindFunctionReturnType ( _
	functionName As String, _
	first As IASTNode _
) As IType
Visual C++
public:
IType^ FindFunctionReturnType(
	String^ functionName, 
	IASTNode^ first
)

Parameters

functionName
Type: System..::..String
The function name.
first
Type: NHibernate.Hql.Ast.ANTLR.Tree..::..IASTNode
The first argument expression.

Return Value

the function return type given the function name and the first argument expression node.

See Also