Log_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 SessionLog event for POP3_Server and SMTP_Server.
  6. /// </summary>
  7. public class Log_EventArgs
  8. {
  9. private string m_LogText = "";
  10. /// <summary>
  11. /// Default constructor.
  12. /// </summary>
  13. /// <param name="logText"></param>
  14. public Log_EventArgs(string logText)
  15. {
  16. m_LogText = logText;
  17. }
  18. #region Properties Implementation
  19. /// <summary>
  20. /// Gets log text.
  21. /// </summary>
  22. public string LogText
  23. {
  24. get{ return m_LogText; }
  25. }
  26. #endregion
  27. }
  28. }