你现在查看的是StatCommand.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.   
  10.   
  11. namespace DotNet.Utilities  
  12. {  
  13.     /// <summary>  
  14.     /// This class represents the Pop3 STAT command.  
  15.     /// </summary>  
  16.     internal sealed class StatCommand : Pop3Command<StatResponse>  
  17.     {  
  18.         /// <summary>  
  19.         /// Initializes a new instance of the <see cref="StatCommand"/> class.  
  20.         /// </summary>  
  21.         /// <param name="stream">The stream.</param>  
  22.         public StatCommand(Stream stream)  
  23.             : base(stream, false, Pop3State.Transaction) { }  
  24.   
  25.         /// <summary>  
  26.         /// Creates the STAT request message.  
  27.         /// </summary>  
  28.         /// <returns>  
  29.         /// The byte[] containing the STAT request message.  
  30.         /// </returns>  
  31.         protected override byte[] CreateRequestMessage()  
  32.         {  
  33.             return GetRequestMessage(Pop3Commands.Stat);  
  34.         }  
  35.   
  36.         /// <summary>  
  37.         /// Creates the response.  
  38.         /// </summary>  
  39.         /// <param name="buffer">The buffer.</param>  
  40.         /// <returns>  
  41.         /// The <c>Pop3Response</c> containing the results of the  
  42.         /// Pop3 command execution.  
  43.         /// </returns>  
  44.         protected override StatResponse CreateResponse(byte[] buffer)  
  45.         {  
  46.             Pop3Response response = Pop3Response.CreateResponse(buffer);  
  47.             string[] values = response.HostMessage.Split(' ');  
  48.   
  49.             //should consist of '+OK', 'messagecount', 'octets'  
  50.             if (values.Length < 3)  
  51.             {  
  52.                 throw new Pop3Exception(string.Concat("Invalid response message: ", response.HostMessage));  
  53.             }  
  54.   
  55.             int messageCount = Convert.ToInt32(values[1]);  
  56.             long octets = Convert.ToInt64(values[2]);  
  57.   
  58.             return new StatResponse(response, messageCount, octets);  
  59.         }  
  60.     }  
  61. }