/// <summary>
 /// Adds the specified element.
 /// </summary>
 /// <param name="element">The <see cref="ServiceConfigurationElement"/>.</param>
 public void Add(ServiceConfigurationElement element)
 {
     BaseAdd(element);
 }
 /// <summary>
 /// Returns the index of the specified <see cref="ServiceConfigurationElement"/>.
 /// </summary>
 /// <param name="element">The <see cref="ServiceConfigurationElement"/>.</param>
 /// <returns>The index of the specified <see cref="ServiceConfigurationElement"/>.</returns>
 public int IndexOf(ServiceConfigurationElement element)
 {
     return BaseIndexOf(element);
 }
 /// <summary>
 /// Removes the specified element.
 /// </summary>
 /// <param name="element">The <see cref="ServiceConfigurationElement"/>.</param>
 public void Remove(ServiceConfigurationElement element)
 {
     if (BaseIndexOf(element) >= 0)
         BaseRemove(element.Name);
 }