public void Remove(EventHandlerOption item)
 {
     if (this.BaseIndexOf(item) >= 0)
     {
         this.BaseRemove(item.EventName);
     }
 }
 public void Add(EventHandlerOption option)
 {
     this.BaseAdd(option);
 }
 public int IndexOf(EventHandlerOption item)
 {
     return(this.BaseIndexOf(item));
 }