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

Ancestor() public method

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

Usage Example

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