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

DescendantOrSelf() public method

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

Usage Example

Exemplo n.º 1
0
 public QilNode DescendantOrSelf(QilNode context)
 {
     return(_f.DescendantOrSelf(context));
 }