commonDelegates.cs
上传用户:horngjaan
上传日期:2009-12-12
资源大小:2882k
文件大小:1k
源码类别:

Email服务器

开发平台:

C#

  1. using System;
  2. namespace LumiSoft.MailServer
  3. {
  4. /// <summary>
  5. /// To be supplied.
  6. /// </summary>
  7. public delegate void ErrorEventHandler(object sender,Error_EventArgs e);
  8. /// <summary>
  9. /// To be supplied.
  10. /// </summary>
  11. public delegate void LogEventHandler(object sender,Log_EventArgs e);
  12. /// <summary>
  13. /// Represents the method that will handle the <see href="LumiSoftMailServerSMTPSMTP_ServerValidateIPAddressFieldOrEvent.html">SMTP_Server.ValidateIPAddress</see> and <see href="LumiSoftMailServerPOP3POP3_ServerValidateIPAddressFieldOrEvent.html">POP3_Server.ValidateIPAddress</see>event.
  14. /// </summary>
  15. /// <param name="sender">The source of the event. </param>
  16. /// <param name="e">A <see href="LumiSoftMailServerValidateIP_EventArgs.html">ValidateIP_EventArgs</see> that contains the event data.</param>
  17. public delegate void ValidateIPHandler(object sender,ValidateIP_EventArgs e);
  18. /// <summary>
  19. /// Represents the method that will handle the AuthUser event for POP3_Server and SMTP_Server.
  20. /// </summary>
  21. /// <param name="sender">The source of the event. </param>
  22. /// <param name="e">A AuthUser_EventArgs that contains the event data.</param>
  23. public delegate void AuthUserEventHandler(object sender,AuthUser_EventArgs e);
  24. }