编译通过,测试未通过!!! 大量精简代码,Accept、Receive等采用单个委托,不支持线程池 引入新的缓冲池 TcpServer和NetServer加上会话集合开关,默认不使用,大量连接时会话集合非常影响性能
Stone 编写于 2013-09-02 21:04:25
X
using System;
using System.Collections.Generic;
using System.Text;

namespace NewLife.Net
{
    /// <summary>异常事件参数</summary>
    public class ExceptionEventArgs : EventArgs
    {
        private Exception _Exception;
        /// <summary>异常</summary>
        public Exception Exception { get { return _Exception; } set { _Exception = value; } }
    }
}