CheckXPathNodeValue() public méthode

public CheckXPathNodeValue ( QilUnary node ) : XmlQueryType
node QilUnary
Résultat XmlQueryType
Exemple #1
0
        //-----------------------------------------------
        // XPath operators
        //-----------------------------------------------
        public QilUnary XPathNodeValue(QilNode child)
        {
            QilUnary n = new QilUnary(QilNodeType.XPathNodeValue, child);

            n.XmlType = _typeCheck.CheckXPathNodeValue(n);
            TraceNode(n);
            return(n);
        }