Pop3State.cs 753 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. namespace Ant.Service.Utilities
  3. {
  4. [Flags()]
  5. public enum Pop3State
  6. {
  7. /// <summary>
  8. /// Undefined.
  9. /// </summary>
  10. Unknown = 0,
  11. /// <summary>
  12. /// Connected to Pop3 server, but not authorized.
  13. /// May issue any of the following commands QUIT, USER, PASS
  14. /// </summary>
  15. Authorization = 1,
  16. /// <summary>
  17. /// Authorized to Pop3 server, can issue any of the following commands;
  18. /// STAT, LIST, RETR, DELE, RSET
  19. /// </summary>
  20. Transaction = 2,
  21. /// <summary>
  22. /// Quit command was sent to server indicating deleted
  23. /// messages should be removed.
  24. /// </summary>
  25. Update = 4
  26. }
  27. }