Exemplo n.º 1
0
 /// <summary>
 /// Removes the specified connection.
 /// </summary>
 /// <param name="connection">The connection.</param>
 public void Remove(ConnectionElement connection)
 {
     if (BaseIndexOf(connection) >= 0)
     {
         BaseRemove(connection.Name);
     }
 }
 /// <summary>
 /// Removes the specified connection.
 /// </summary>
 /// <param name="connection">The connection.</param>
 public void Remove (ConnectionElement connection)
 {
     if (BaseIndexOf (connection) >= 0)
         BaseRemove (connection.Name);
 }
 /// <summary>
 /// Adds the specified connection.
 /// </summary>
 /// <param name="connection">The connection.</param>
 public void Add (ConnectionElement connection)
 {
     BaseAdd (connection);
 }
 /// <summary>
 /// Indexes the of.
 /// </summary>
 /// <param name="connection">The connection.</param>
 /// <returns></returns>
 public int IndexOf (ConnectionElement connection)
 {
     return BaseIndexOf (connection);
 }
Exemplo n.º 5
0
 /// <summary>
 /// Adds the specified connection.
 /// </summary>
 /// <param name="connection">The connection.</param>
 public void Add(ConnectionElement connection)
 {
     BaseAdd(connection);
 }
Exemplo n.º 6
0
 /// <summary>
 /// Indexes the of.
 /// </summary>
 /// <param name="connection">The connection.</param>
 /// <returns></returns>
 public int IndexOf(ConnectionElement connection)
 {
     return(BaseIndexOf(connection));
 }