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