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