Beispiel #1
0
 /// <summary>
 ///		Lanza un evento
 /// </summary>
 private void RaiseEvent(SMTPEventArgs.ActionType intAction, string strDescription)
 {
     if (SMTPAction != null)
     SMTPAction(this, new SMTPEventArgs(intAction, Server, strDescription));
 }
Beispiel #2
0
 /// <summary>
 ///		Lanza un evento
 /// </summary>
 private void RaiseEvent(SMTPEventArgs.ActionType intAction)
 {
     RaiseEvent(intAction, null);
 }