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

Email服务器

开发平台:

C#

  1. using System;
  2. namespace LumiSoft.MailServer
  3. {
  4. /// <summary>
  5. /// Provides data for the ValidateIPAddress event for POP3_Server and SMTP_Server.
  6. /// </summary>
  7. public class ValidateIP_EventArgs
  8. {
  9. private string m_ConnectedIP = "";
  10. private bool   m_Validated   = true;
  11. /// <summary>
  12. /// Default constructor.
  13. /// </summary>
  14. /// <param name="connectedIP">Connected host IP address.</param>
  15. public ValidateIP_EventArgs(string connectedIP)
  16. {
  17. m_ConnectedIP = connectedIP;
  18. }
  19. #region Properties Implementation
  20. /// <summary>
  21. /// IP address of computer, which is sending mail to here.
  22. /// </summary>
  23. public string ConnectedIP
  24. {
  25. get{ return m_ConnectedIP; }
  26. }
  27. /// <summary>
  28. /// Gets or sets if IP is allowed access.
  29. /// </summary>
  30. public bool Validated
  31. {
  32. get{ return m_Validated; }
  33. set{ m_Validated = value; }
  34. }
  35. #endregion
  36. }
  37. }