MailboxManager.cs
上传用户:wdhx888
上传日期:2017-06-08
资源大小:112k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

C#

  1. using System;
  2. namespace EricDaugherty.CSES.Mailbox
  3. {
  4. /// <summary>
  5. /// Mailbox Manager is a singleton class that provides
  6. /// access to the current mailbox implementation.
  7. /// </summary>
  8. /// <remarks>
  9. /// Incomplete.
  10. /// </remarks>
  11. public class MailboxManager
  12. {
  13. #region Constructors
  14. /// <summary>
  15. /// Private constructor used by the GetInstance method to
  16. /// create the one and only singleton instance.
  17. /// </summary>
  18. private MailboxManager()
  19. {
  20. }
  21. #endregion
  22. #region Static Methods
  23. // public static MailboxManager GetInstance();
  24. #endregion
  25. }
  26. }