System.Xml.Xsl.IlGen.XmlILOptimizerVisitor.PositionOfFinder.OnFound C# (CSharp) Method

OnFound() protected method

Return true only if parent node type is PositionOf.
protected OnFound ( QilNode expr ) : bool
expr QilNode
return bool
            protected override bool OnFound(QilNode expr) {
                return this.parent != null && this.parent.NodeType == QilNodeType.PositionOf;
            }
        }
XmlILOptimizerVisitor.PositionOfFinder