System.Xml.Xsl.Xslt.QilGenerator.EnterScope C# (CSharp) Method

EnterScope() private method

private EnterScope ( XslNode node ) : QilList
node XslNode
return System.Xml.Xsl.Qil.QilList
        private QilList EnterScope(XslNode node)
        {
            // This is the only place where lastScope is changed
            _lastScope = node;
            _xslVersion = node.XslVersion;
            if (_scope.EnterScope(node.Namespaces))
            {
                return BuildDebuggerNamespaces();
            }
            return null;
        }
QilGenerator