System.Xml.Xsl.IlGen.XmlILVisitor.VisitAncestor C# (CSharp) Method

VisitAncestor() protected method

Find physical query plan for QilNodeType.Ancestor.
protected VisitAncestor ( QilUnary ndAnc ) : QilNode
ndAnc System.Xml.Xsl.Qil.QilUnary
return QilNode
        protected override QilNode VisitAncestor(QilUnary ndAnc) {
            CreateFilteredIterator(ndAnc.Child, "$$$iterAnc", typeof(AncestorIterator), XmlILMethods.AncCreate, XmlILMethods.AncNext,
                                   XmlNodeKindFlags.Any, null, TriState.False, null);
            return ndAnc;
        }
XmlILVisitor