namespace Ant.Service.Utilities { /// /// This class contains a string representation of Pop3 commands /// that can be executed. /// internal static class Pop3Commands { /// /// The USER command followed by a space. /// public const string User = "USER "; /// /// The CRLF escape sequence. /// public const string Crlf = "\r\n"; /// /// The QUIT command followed by a CRLF. /// public const string Quit = "QUIT\r\n"; /// /// The STAT command followed by a CRLF. /// public const string Stat = "STAT\r\n"; /// /// The LIST command followed by a space. /// public const string List = "LIST "; /// /// The RETR command followed by a space. /// public const string Retr = "RETR "; /// /// The NOOP command followed by a CRLF. /// public const string Noop = "NOOP\r\n"; /// /// The DELE command followed by a space. /// public const string Dele = "DELE "; /// /// The RSET command followed by a CRLF. /// public const string Rset = "RSET\r\n"; /// /// The PASS command followed by a space. /// public const string Pass = "PASS "; /// /// The TOP command followed by a space. /// public const string Top = "TOP "; } }