Exemplo n.º 1
0
 /// <exception cref="Exception">A delegate callback throws an exception.</exception>
 private void OnNewMail(NewMailEventArgs e)
 {
     e.Raise(this, ref NewMail);
 }
Exemplo n.º 2
0
        /// <exception cref="Exception">A delegate callback throws an exception.</exception>
        public void SimulateNewMail(string from, string to, string subject)
        {
            var e = new NewMailEventArgs(from, to, subject);

            OnNewMail(e);
        }