XsltLibrary.RelationalOperator Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Avalia se a expressão left
é maior ou igual ou menor ou igual à expressão right
com base no opCode
passado.
Esta API dá suporte à infraestrutura do produto e não deve ser usada diretamente do seu código.
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
Parâmetros
- opCode
- Double
Especifica como realizar a avaliação de duas expressões:
Se opCode for igual a 2, avalia a expressão XPath "left < right".
Se opCode for igual a 3, avalia a expressão XPath "left <= right".
Se opCode for igual a 4, avalia a expressão XPath "left > right".
Se opCode for igual a 5, avalia a expressão XPath "left >= right"
Retornos
Um valor booliano que é verdadeiro se a expressão à esquerda for maior ou igual à expressão à direita.