public void Remove(NotifierConfigurationElement notifier)
 {
     if (BaseIndexOf(notifier) >= 0)
     {
         BaseRemove(notifier.Name);
         // Your custom code goes here.
         System.Console.WriteLine("NotiferCollection: {0}", "Removed collection element!");
     }
 }
        public void Add(NotifierConfigurationElement notifier)
        {
            BaseAdd(notifier);

            // Your custom code goes here.
        }
 public int IndexOf(NotifierConfigurationElement notifier)
 {
     return(BaseIndexOf(notifier));
 }