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

Parent() public méthode

public Parent ( QilNode child ) : QilUnary
child QilNode
Résultat QilUnary
        public QilUnary Parent(QilNode child) {
            QilUnary n = new QilUnary(QilNodeType.Parent, child);
            n.XmlType = this.typeCheck.CheckParent(n);
            TraceNode(n);
            return n;
        }
        

Usage Example

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