System.Xml.Xsl.XsltOld.InputScopeManager.InsertExtensionNamespaces C# (CSharp) Method

InsertExtensionNamespaces() private method

private InsertExtensionNamespaces ( string nsList ) : void
nsList string
return void
        internal void InsertExtensionNamespaces(string[] nsList) {
            Debug.Assert(this.scopeStack != null, "PushScope wasn't called");
            Debug.Assert(nsList != null);
            for (int idx = 0; idx < nsList.Length; idx++) {
                this.scopeStack.InsertExtensionNamespace(nsList[idx]);
            }
        }