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

Email服务器

开发平台:

C#

  1. using System;
  2. using System.Diagnostics;
  3. namespace LumiSoft.MailServer
  4. {
  5. /// <summary>
  6. /// Provides data for the SysError event for POP3_Server and SMTP_Server.
  7. /// </summary>
  8. public class Error_EventArgs
  9. {
  10. private Exception  m_pException  = null;
  11. private StackTrace m_pStackTrace = null;
  12. /// <summary>
  13. /// Default constructor.
  14. /// </summary>
  15. /// <param name="x"></param>
  16. /// <param name="stackTrace"></param>
  17. public Error_EventArgs(Exception x,StackTrace stackTrace)
  18. {
  19. m_pException  = x;
  20. m_pStackTrace = stackTrace;
  21. }
  22. #region Properties Implementaion
  23. /// <summary>
  24. /// Occured error's exception.
  25. /// </summary>
  26. public Exception Exception
  27. {
  28. get{ return m_pException; }
  29. }
  30. /// <summary>
  31. /// Occured error's stacktrace.
  32. /// </summary>
  33. public StackTrace StackTrace
  34. {
  35. get{ return m_pStackTrace; }
  36. }
  37. #endregion
  38. }
  39. }