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