using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net; namespace NET { /// /// 功能:基于TCP协议的终端节点信息 /// 作者:王昊昇 /// 时间:2012.2.8 /// public class RemoteEndPoint : EndPoint { /// /// IP地址 /// public IPAddress IP { get; set; } /// /// 端口号 /// public int Port { get; set; } /// /// 等待连接的最大数量 /// public int ConnectionLength { get; set; } /// /// 线程数量 /// public int ThreadLength { get; set; } /// /// 服务器允许的超时时间 /// public int Timeout { get; set; } } }