07 2022 档案

摘要:一个Socket两端,都会有Send和Recv两个方法, 如果client发送数据到server,那么就是客户端进程调用send发送数据,而Send的作用是将数据拷贝进入socket的内核发送缓冲区之中,然后send便会在上层返回。send方法返回之时,数据不一定会发送对端server上去。Send 阅读全文
posted @ 2022-07-31 21:31 HelloWorld庄先生 阅读(2327) 评论(0) 推荐(1) 编辑
摘要:参考博文:https://blog.csdn.net/u010476739/article/details/105339149 一、System.Threading.Timer 二、System.Timers.Timer 三、System.Windows.Forms.Timer(Windows Fo 阅读全文
posted @ 2022-07-19 22:18 HelloWorld庄先生 阅读(82) 评论(0) 推荐(0) 编辑
摘要:注意:客户端不需要绑定ip和端口,只需要和服务端建立连接 static void Main(string[] args) { Socket clientSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, Protoco 阅读全文
posted @ 2022-07-17 23:44 HelloWorld庄先生 阅读(47) 评论(0) 推荐(0) 编辑