System.Xml.Xsl.Qil.QilFactory.XPathNodeValue C# (CSharp) Method

XPathNodeValue() public method

public XPathNodeValue ( QilNode child ) : QilUnary
child QilNode
return QilUnary
        public QilUnary XPathNodeValue(QilNode child) {
            QilUnary n = new QilUnary(QilNodeType.XPathNodeValue, child);
            n.XmlType = this.typeCheck.CheckXPathNodeValue(n);
            TraceNode(n);
            return n;
        }
        

Usage Example

Exemplo n.º 1
0
 //-----------------------------------------------
 // XPath operators
 //-----------------------------------------------
 public QilNode XPathNodeValue(QilNode expr)
 {
     return(_f.XPathNodeValue(expr));
 }