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

BuildDebuggerNamespaces() private method

private BuildDebuggerNamespaces ( ) : QilList
return System.Xml.Xsl.Qil.QilList
        private QilList BuildDebuggerNamespaces()
        {
            if (IsDebug)
            {
                QilList nsDecls = _f.BaseFactory.Sequence();
                foreach (ScopeRecord rec in _scope)
                {
                    nsDecls.Add(_f.NamespaceDecl(_f.String(rec.ncName), _f.String(rec.nsUri)));
                }
                return nsDecls;
            }
            return null;
        }
QilGenerator