gpt4 book ai didi

winforms - 如何在 Azure 中 ping 我的网站?

转载 作者:行者123 更新时间:2023-12-02 07:37:31 25 4
gpt4 key购买 nike

我编写了一个 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com