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

EndBinding() private method

Mark iterator variables as out-of-scope.
private EndBinding ( QilIterator ndIter ) : void
ndIter System.Xml.Xsl.Qil.QilIterator
return void
        private void EndBinding(QilIterator ndIter) {
            Debug.Assert(ndIter != null);

            // Variables go out of scope here
            if (this.qil.IsDebug && ndIter.DebugName != null)
                this.helper.DebugEndScope();
        }
XmlILVisitor