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

Descendant() public method

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

Usage Example

Exemplo n.º 1
0
 public QilNode Descendant(QilNode expr)
 {
     return(_f.Descendant(expr));
 }