CMPP SP端 C# 实例
日期:2008年2月25日 作者: 相关tags: MPP 实例- 上一页 [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16] [17] [18] [19] [20] [21] [22] [23] [24] [25] [26] [27] [28] [29] [30] [31] [32] [33] [34] [35] [36] [37] [38] [39] [40] [41] [42] [43] [44] [45] [46] [47] [48] [49] [50] [51] [52] [53] [54] 下一页
- Eclipse RCP+Spring建胖客户端Web程序
- NBA 2K12突破和防守!具体经验
- NBA 2K11360度 罚球线起跳 键盘简单按出
- .net2008写幻灯片程序实例
- NBA 2K12操作技术图文教程
- Android日程表使用 整合开发实例
- OSPF一些常用命令
- ASP.NET获取远程网页下载到本地文件
- 番茄花园 Windows XP Pro SP2 免激活
- Absolute MP3 Splitter & Converter 2.9.15 汉化版
- JSP编程技巧
- Zealot All Video Splitter 4.3.1 汉化版
- 雨林木风 Ghost XP SP3 纯净版 Y9.0
- 深度 Windows XP SP3 V6.3版[215M小盘] 完美精简版
- 《购物热潮:家庭财富》Shop-N-Spree: Family Fortune 硬盘版
- PSP模拟器Jpcsp SVN r2324 多语中文版
- 特别声明:本站除部分特别声明禁止转载的专稿外的其他文章可以自由转载,但请务必注明出处和原始作
- 者.文章版权归文章原始作者所有.对于被本站转载文章的个人和网站,我们表示深深的谢意。如果本站转
- 载的文章有版权问题请联系编辑人员,我们尽快予以更正. 转载请注明来源:http://www.hackhome.com
public bool Init(string CMPPServer,int CMPPPort,int recvtimeout)
{
this.RecvTimeOut =recvtimeout;
this.SendTimeout =recvtimeout;
return(this._init(CMPPServer,CMPPPort));
}
public bool Login(string SystemID,string UserName,string Password)
{
try
{
SendLogin(SystemID, UserName, Password);
this.LogLastOkTime(DateTime.Now); //最后一次正确的发送
}
catch(SocketException se)
{
//发送出错
this.ErrorInfo = this.ErrorInfo +"\r\n"+se.ToString();
return(false);
}
DateTime t1=DateTime.Now;
while(!this.isLogin)
{
byte[] rbuf=new Byte[400];
int l;
try
{
l=tcp.Receive(rbuf) ;
