如何使用 C#.net 在每隔几秒/分钟内 ping 一次域?
我将开发每隔一定时间间隔 ping 域名的网站,以检查域名状态。参考网站:http://pingdom.com/ 这个网站也喜欢做同样的事情。如何使用 C# 获取 Ping 统计信息?
I going to developed website that ping domain in every some time interval for checking the domain status. refer site: http://pingdom.com/ this site also like do same. How I get Ping statistic using C#..?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 Ping 类
您可以在Global.asax,并使用 Ping 类在每个时间间隔对您的域执行 ping 操作
Use Ping class
You can start timer in your Global.asax, and ping you domain in every time interval by using Ping class
您可以使用 PING 类。您可以使用发送方法执行 ping 操作并接收回显。
There's a PING class which you can use. You can use Send Method to do the pinging and receive the echo.