Common.cs
上传用户:hncsjykj
上传日期:2022-08-09
资源大小:461k
文件大小:1k
源码类别:

Email客户端

开发平台:

C#

  1. /******************************************************************************
  2. Copyright 2003-2004 Hamid Qureshi and Unruled Boy 
  3. OpenPOP.Net is free software; you can redistribute it and/or modify
  4. it under the terms of the Lesser GNU General Public License as published by
  5. the Free Software Foundation; either version 2 of the License, or
  6. (at your option) any later version.
  7. OpenPOP.Net is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10. Lesser GNU General Public License for more details.
  11. You should have received a copy of the Lesser GNU General Public License
  12. along with this program; if not, write to the Free Software
  13. Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  14. /*******************************************************************************/
  15. /*
  16. *Name: OpenPOP.MIMEParser.Common
  17. *Function: Common definitions
  18. *Author: Hamid Qureshi
  19. *Created: 2003/8
  20. *Modified: 2004/3/29 12:28 GMT+8
  21. *Description:
  22. * 2004/3/30 09:15 GMT+8 by Unruled Boy
  23. * 1.Adding ImportanceType
  24. */
  25. using System;
  26. namespace OpenPOP.MIMEParser
  27. {
  28. /// <summary>
  29. /// 3 message importance types defined by RFC
  30. /// </summary>
  31. /// <remarks>
  32. /// </remarks>
  33. public enum MessageImportanceType
  34. {
  35. HIGH=5,NORMAL=3,LOW=1
  36. }
  37. }