Example #1
0
 public void Remove(EmailElement e)
 {
     if (BaseIndexOf(e) >= 0)
     {
         BaseRemove(e.onErrorCode);
     }
 }
Example #2
0
        public EmailCollection()
        {
            EmailElement e = (EmailElement)CreateNewElement();

            if (e.onErrorCode != "")
            {
                Add(e);
            }
        }
Example #3
0
 public void Add(EmailElement e)
 {
     BaseAdd(e);
 }
Example #4
0
 public int IndexOf(EmailElement e)
 {
     return(BaseIndexOf(e));
 }