Beispiel #1
0
 public void Add(string name, DTDParameterEntityDeclaration decl)
 {
     if (this.peDecls[name] != null)
     {
         return;
     }
     decl.SetRoot(this.root);
     this.peDecls.Add(name, decl);
 }
 public void Add(string name, DTDParameterEntityDeclaration decl)
 {
     // PEDecl can be overriden.
     if (peDecls [name] != null)
     {
         return;
     }
     decl.SetRoot(root);
     peDecls.Add(name, decl);
 }