Exemplo n.º 1
0
 public void Remove(CSConnectionElement connection)
 {
     if (BaseIndexOf(connection) >= 0)
     {
         BaseRemove(connection.Name);
     }
 }
Exemplo n.º 2
0
 public void Add(CSConnectionElement connection)
 {
     BaseAdd(connection);
 }
Exemplo n.º 3
0
 public int IndexOf(CSConnectionElement connection)
 {
     return(BaseIndexOf(connection));
 }
Exemplo n.º 4
0
		public void Remove(CSConnectionElement connection)
		{
			if (BaseIndexOf(connection) >= 0) BaseRemove(connection.Name);
		}
Exemplo n.º 5
0
		public void Add(CSConnectionElement connection)
		{
			BaseAdd(connection);
		}
Exemplo n.º 6
0
		public int IndexOf(CSConnectionElement connection)
		{
			return BaseIndexOf(connection);
		}