33 lines
940 B
C#
33 lines
940 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Net.Sockets;
|
|
using System.IO;
|
|
using System.Text;
|
|
|
|
namespace Net.Mail
|
|
{
|
|
/// <summary>
|
|
/// This class represents the Pop3 QUIT command.
|
|
/// </summary>
|
|
internal sealed class QuitCommand : Pop3Command<Pop3Response>
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="QuitCommand"/> class.
|
|
/// </summary>
|
|
/// <param name="stream">The stream.</param>
|
|
public QuitCommand(Stream stream)
|
|
: base(stream, false, Pop3State.Transaction | Pop3State.Authorization) { }
|
|
|
|
/// <summary>
|
|
/// Creates the Quit request message.
|
|
/// </summary>
|
|
/// <returns>
|
|
/// The byte[] containing the QUIT request message.
|
|
/// </returns>
|
|
protected override byte[] CreateRequestMessage()
|
|
{
|
|
return GetRequestMessage(Pop3Commands.Quit);
|
|
}
|
|
}
|
|
}
|