你现在查看的是RetrCommand.cs类的源码

  1.  /// <summary>  
  2. /// 类说明:Assistant  
  3. /// 编 码 人:苏飞  
  4. /// 联系方式:361983679    
  5. /// 更新网站:http://www.sufeinet.com/thread-655-1-1.html  
  6. /// </summary>  
  7. using System;  
  8. using System.IO;  
  9. namespace DotNet.Utilities  
  10. {  
  11.     /// <summary>  
  12.     /// This class represents the Pop3 RETR command.  
  13.     /// </summary>  
  14.     internal sealed class RetrCommand : Pop3Command<RetrResponse>  
  15.     {  
  16.         int _message;  
  17.   
  18.         /// <summary>  
  19.         /// Initializes a new instance of the <see cref="RetrCommand"/> class.  
  20.         /// </summary>  
  21.         /// <param name="stream">The stream.</param>  
  22.         /// <param name="message">The message.</param>  
  23.         public RetrCommand(Stream stream, int message)  
  24.             : base(stream, true, Pop3State.Transaction)  
  25.         {  
  26.             if (message < 0)  
  27.             {  
  28.                 throw new ArgumentOutOfRangeException("message");  
  29.             }  
  30.   
  31.             _message = message;  
  32.         }  
  33.   
  34.         /// <summary>  
  35.         /// Creates the RETR request message.  
  36.         /// </summary>  
  37.         /// <returns>  
  38.         /// The byte[] containing the RETR request message.  
  39.         /// </returns>  
  40.         protected override byte[] CreateRequestMessage()  
  41.         {  
  42.             return GetRequestMessage(Pop3Commands.Retr, _message.ToString(), Pop3Commands.Crlf);  
  43.         }  
  44.   
  45.         /// <summary>  
  46.         /// Creates the response.  
  47.         /// </summary>  
  48.         /// <param name="buffer">The buffer.</param>  
  49.         /// <returns>  
  50.         /// The <c>Pop3Response</c> containing the results of the  
  51.         /// Pop3 command execution.  
  52.         /// </returns>  
  53.         protected override RetrResponse CreateResponse(byte[] buffer)  
  54.         {  
  55.             Pop3Response response = Pop3Response.CreateResponse(buffer);  
  56.   
  57.             string[] messageLines = GetResponseLines(StripPop3HostMessage(buffer, response.HostMessage));  
  58.   
  59.             return new RetrResponse(response, messageLines);  
  60.         }  
  61.     }  
  62. }