示例#1
0
        /// <summary>
        /// Executes the POP3 STAT command.
        /// </summary>
        /// <returns>A Stat object containing the results of STAT command.</returns>
        /// <exception cref="Pop3Exception">If the STAT command was unable to be executed successfully.</exception>
        public Stat Stat()
        {
            StatResponse response;

            using (StatCommand command = new StatCommand(_clientStream))
            {
                response = ExecuteCommand <StatResponse, StatCommand>(command);
            }

            return(new Stat(response.MessageCount, response.Octets));
        }
示例#2
0
 private void Start()
 {
     IF.onEndEdit.AddListener((v) => PlayerClient.PC.NP.CmdChat(v));
     //Debug.Log(typeof(PlayerBrain).AssemblyQualifiedName +"\n"+ typeof(GrappleGun).AssemblyQualifiedName);
     StatCommand.Start();
 }