System.Xml.Xsl.XsltOld.InputScopeManager.InsertExcludedNamespaces C# (CSharp) 메소드

InsertExcludedNamespaces() 개인적인 메소드

private InsertExcludedNamespaces ( string nsList ) : void
nsList string
리턴 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]);
            }
        }