XsltLibrary.RelationalOperator Method

Definition

Evaluates whether the left expression is greater than or equal to, or less than or equal to, the right expression based on the opCode passed.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 bool RelationalOperator(double opCode, System::Collections::Generic::IList<System::Xml::XPath::XPathItem ^> ^ left, System::Collections::Generic::IList<System::Xml::XPath::XPathItem ^> ^ right);
public bool RelationalOperator (double opCode, System.Collections.Generic.IList<System.Xml.XPath.XPathItem> left, System.Collections.Generic.IList<System.Xml.XPath.XPathItem> right);
member this.RelationalOperator : double * System.Collections.Generic.IList<System.Xml.XPath.XPathItem> * System.Collections.Generic.IList<System.Xml.XPath.XPathItem> -> bool
Public Function RelationalOperator (opCode As Double, left As IList(Of XPathItem), right As IList(Of XPathItem)) As Boolean

Parameters

opCode
Double

Specifies how to perform the evaluation of two expressions:

If opCode is equal to 2, evaluates the XPath expression "left < right".

If opCode is equal to 3, evaluates the XPath expression "left <= right".

If opCode is equal to 4, evaluates the XPath expression "left > right".

If opCode is equal to 5, evaluates the XPath expression "left >= right"

left
IList<XPathItem>

Expression to evaluate.

right
IList<XPathItem>

Expression to evaluate.

Returns

A Boolean value that is true if the left expression is greater than or equal to the right expression.

Applies to