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

WPF中使用定时器 DispatcherTimer 做TCP连接中的心跳 HeartBeat

时间:2015-12-25 13:23:29      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:

开发过程中经常遇到定时触发的需求,如:TCP/IP连接中,使用心跳包保持连接或检测连接是否已经中断。

WPF中有多种定时器:

1.using System.Windows.Threading;

代码如下:

using System.Windows.Threading;

public partial class MainWindow : Window
{
  DispatcherTimer timerHeartBeat = new DispatcherTimer();

   public MainWindow()
   {
       timerHeartBeat.Tick += SendHeartBeatToServer; 
timerHeartBeat.Interval = TimeSpan.FromSeconds(60 * 5);
timerHeartBeat.Start(); }
private void SendHeartBeatToServer(object sender,EventArgs e) { string strToSend = "{CMD:‘99999‘}"; SendMsg(strToSend); } }

 

WPF中使用定时器 DispatcherTimer 做TCP连接中的心跳 HeartBeat

标签:

原文地址:http://www.cnblogs.com/lopengye/p/5075394.html

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