public void Remove(PluginConfigurationElement configElement)
 {
     if (BaseIndexOf(configElement) >= 0)
         BaseRemove(configElement.Name);
 }
 public void Add(PluginConfigurationElement configElement)
 {
     BaseAdd(configElement);
     // Add custom code here.
 }
 public int IndexOf(PluginConfigurationElement configElement)
 {
     return BaseIndexOf(configElement);
 }