/// <summary>
 /// Remove the specified SpecialConnectionParameterElement from the inner Array
 /// </summary>
 /// <seealso cref="Aquiles.Configuration.SpecialConnectionParameterElement"/>
 /// <param name="element">element to be removed</param>
 public void Remove(SpecialConnectionParameterElement element)
 {
     if (BaseIndexOf(element) >= 0)
         BaseRemove(element.Key);
 }
 /// <summary>
 /// Add SpecialConnectionParameterElement on the inner Array
 /// </summary>
 /// <seealso cref="Aquiles.Configuration.SpecialConnectionParameterElement"/>
 /// <param name="element">element to be added</param>
 public void Add(SpecialConnectionParameterElement element)
 {
     BaseAdd(element);
 }
 /// <summary>
 /// Given a SpecialConnectionParameterElement, it returns its position on the array
 /// </summary>
 /// <seealso cref="Aquiles.Configuration.SpecialConnectionParameterElement"/>
 /// <param name="element">a SpecialConnectionParameterElement contained on the array</param>
 /// <returns>the position of the element</returns>
 public int IndexOf(SpecialConnectionParameterElement element)
 {
     return BaseIndexOf(element);
 }