码迷,mamicode.com
首页 > Windows程序 > 详细

C# UdpClient 设置超时时间

时间:2016-12-08 20:38:22      阅读:347      评论:0      收藏:0      [点我收藏+]

标签:receive   style   client   can   send   时间   over   span   set   

/**********************************************************************
 *                        C# UdpClient 设置超时时间
 * 说明:
 *     网络通信中设置超时时间是常有的时,记录UDP获取、发送超时设置方法。
 *
 *                                  2016-12-8 深圳 南山平山村 曾剑锋
 *********************************************************************/

一、参考文档:
    1. Can I set the timeout for UdpClient in C#?
        http://stackoverflow.com/questions/2281441/can-i-set-the-timeout-for-udpclient-in-c

二、解决方法:
    var udpClient = new UdpClient();

    udpClient.Client.SendTimeout = 5000;
    udpClient.Client.ReceiveTimeout = 5000;

 

C# UdpClient 设置超时时间

标签:receive   style   client   can   send   时间   over   span   set   

原文地址:http://www.cnblogs.com/zengjfgit/p/6146175.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!