Pop3Responses.cs 575 B

123456789101112131415161718192021
  1. 
  2. namespace Ant.Service.Utilities
  3. {
  4. /// <summary>
  5. /// This class contains the Positive and Negative starting response strings
  6. /// that can be returned from a Pop3 server.
  7. /// </summary>
  8. internal static class Pop3Responses
  9. {
  10. /// <summary>
  11. /// The +OK starting of a positive response from the server.
  12. /// </summary>
  13. internal const string Ok = "+OK";
  14. /// <summary>
  15. /// The -ERR starting of a negative response from the server.
  16. /// </summary>
  17. internal const string Err = "-ERR";
  18. }
  19. }