标签: c# winforms asynchronous
我的Windows窗体应用程序正在使用 .NET framework 3.5 。
需要持续ping IP地址(如ping IpAddress -t)并以标签输出结果。
ping IpAddress -t
我无法使用ping.sendAsync函数执行此操作。因为我在3.5工作,所以我无法访问Threading.Task。 此功能有其他替代方法吗?
我的目标是使用.NET 3.5开发this one等应用程序。
答案 0 :(得分:2)
在PingCompleted事件处理程序中发起新的SendAsync()。
PingCompleted
SendAsync()