using System.IO; namespace Ant.Service.Utilities { /// /// This command represents the Pop3 RSET command. /// internal sealed class RsetCommand : Pop3Command { /// /// Initializes a new instance of the class. /// /// The stream. public RsetCommand(Stream stream) : base(stream, false, Pop3State.Transaction) { } /// /// Creates the RSET request message. /// /// /// The byte[] containing the RSET request message. /// protected override byte[] CreateRequestMessage() { return GetRequestMessage(Pop3Commands.Rset); } } }