InsertExtensionNamespace() private method

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