System.Xml.Xsl.IlGen.XmlILOptimizerVisitor.NodeFinder.Find C# (CSharp) Method

Find() public method

Returns true if "target" node exists within the subtree of "expr".
public Find ( QilNode expr, QilNode target ) : bool
expr QilNode
target QilNode
return bool
            public bool Find(QilNode expr, QilNode target) {
                this.result = false;
                this.target = target;
                this.parent = null;
                VisitAssumeReference(expr);
                return this.result;
            }
XmlILOptimizerVisitor.NodeFinder