System.Xml.Xsl.IlGen.XmlILVisitor.SyncToNavigator C# (CSharp) Метод

SyncToNavigator() приватный Метод

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
Результат 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