Exemplo n.º 1
0
 public void Remove(ConnectionStringElement url)
 {
     if (this.BaseIndexOf(url) >= 0)
     {
         this.BaseRemove(url.Name);
     }
 }
Exemplo n.º 2
0
 public void Add(ConnectionStringElement url)
 {
     this.BaseAdd(url);
 }
Exemplo n.º 3
0
 public int IndexOf(ConnectionStringElement url)
 {
     return(this.BaseIndexOf(url));
 }