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

InsertExcludedNamespaces() private method

private InsertExcludedNamespaces ( string nsList ) : void
nsList string
return void
        internal void InsertExcludedNamespaces(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.InsertExcludedNamespace(nsList[idx]);
            }
        }