System.Xml.Xsl.Qil.QilFactory.DescendantOrSelf C# (CSharp) Méthode

DescendantOrSelf() public méthode

public DescendantOrSelf ( QilNode child ) : QilUnary
child QilNode
Résultat 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

 public QilNode DescendantOrSelf(QilNode context)
 {
     return(_f.DescendantOrSelf(context));
 }