The ExprBinary will compute the specified specified function on the specified lhs and rhs parameters.

Namespace: Endeca.Navigation.Analytics
Assembly: Endeca.Navigation (in Endeca.Navigation.dll) Version: 6.3.0.0 (6.3.0.853)

Syntax

C#
public ExprBinary(
	ExprBinary..::..ExprBinaryOp function,
	IExpr lhs,
	IExpr rhs
)
Visual Basic
Public Sub New ( _
	function As ExprBinary..::..ExprBinaryOp, _
	lhs As IExpr, _
	rhs As IExpr _
)
Visual C++
public:
ExprBinary(
	ExprBinary..::..ExprBinaryOp^ function, 
	IExpr^ lhs, 
	IExpr^ rhs
)

Parameters

function
Type: Endeca.Navigation.Analytics..::..ExprBinary..::..ExprBinaryOp
A mathematical function (of type ExprBinary..::..ExprBinaryOp) that specifies the type of operation to be made. See the Function property for a list of the function names.
lhs
Type: Endeca.Navigation.Analytics..::..IExpr
An object of type IExpr that will be the left-hand side of this binary expression.
rhs
Type: Endeca.Navigation.Analytics..::..IExpr
An object of type IExpr that will be the right-hand side of this binary expression.

See Also