using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Net.Sockets;
namespace Net.Mail
{
///
/// 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);
}
}
}