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

SyncToNavigator() private method

Ensure that the "locNav" navigator is positioned to the context node "ndCtxt".
private SyncToNavigator ( LocalBuilder locNav, QilNode ndCtxt ) : void
locNav System.Reflection.Emit.LocalBuilder
ndCtxt QilNode
return void
        private void SyncToNavigator(LocalBuilder locNav, QilNode ndCtxt) {
            this.helper.Emit(OpCodes.Ldloc, locNav);
            NestedVisitEnsureStack(ndCtxt);
            this.helper.CallSyncToNavigator();
            this.helper.Emit(OpCodes.Stloc, locNav);
        }
XmlILVisitor