/// <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); }
/// <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)); }