作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我编写了一个 Windows 应用程序,每 5 分钟 ping 我的网站一次,以控制当前是 UP 还是 DOWN。它在我们的网络和测试服务器中工作,但我们的实时环境位于 Azure 中,它不允许我 ping 该网站。
我可以使用什么来代替 Ping 来控制 Azure 中的网站?以及如何?
最佳答案
使用 HttpWebRequest 和 HttpWebResponse 并记住释放您创建的对象。特别是HttpWebResponse的响应流。
HttpWebResponse res = req.GetResponse() as HttpWebResponse;
using (Stream respStream = res.GetResponseStream())
{
respStream.ReadByte();
respStream.Close();
}
关于winforms - 如何在 Azure 中 ping 我的网站?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15789190/
我是一名优秀的程序员,十分优秀!