Beispiel #1
0
 /// <exception cref="Exception">A delegate callback throws an exception.</exception>
 private void OnNewMail(NewMailEventArgs e)
 {
     e.Raise(this, ref NewMail);
 }
Beispiel #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);
        }