WebRequest.GetResponse() 何时将连接设置为“Keep-Alive”?时间:2019-03-17 标签:c#

发布于 2024-11-15 11:21:48 字数 659 浏览 0 评论 0 原文

我有以下函数

private byte[] Function(string url)
{
    HttpWebRequest webRequest= (HttpWebRequest)WebRequest.Create(url);
    webRequest.AddRange(0, 200);
    webRequest.Method = "GET";
    webRequest.KeepAlive = true;

    byte[] buffer = new byte[200];
    using (var webResponse =  webRequest.GetResponse())
    using (Stream webResponseStreem = webResponse.GetResponseStream())
    {
        webResponseStreem.Read(buffer, 0, 200);
    }

    return buffer;
}

,我从应用程序的不同部分调用它。有时我得到的结果并不是我所期望的。我注意到有时调用 webRequest.GetResponse()webRequest.Connection 设置为 “Keep-Alive”,有时则不然。它取决于什么?

I have the following function

private byte[] Function(string url)
{
    HttpWebRequest webRequest= (HttpWebRequest)WebRequest.Create(url);
    webRequest.AddRange(0, 200);
    webRequest.Method = "GET";
    webRequest.KeepAlive = true;

    byte[] buffer = new byte[200];
    using (var webResponse =  webRequest.GetResponse())
    using (Stream webResponseStreem = webResponse.GetResponseStream())
    {
        webResponseStreem.Read(buffer, 0, 200);
    }

    return buffer;
}

and I call it from different part of my application. Sometimes the result that I get is not what I expect. I noticed that sometimes the call webRequest.GetResponse() sets webRequest.Connection to "Keep-Alive" and sometimes does not. What does it depend on?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岁月流歌 2024-11-22 11:21:48

我不知道什么控制是否应发送此标头,但根据 文档

使用 HTTP/1.1 时,Keep-Alive 处于开启状态
默认情况下。将 KeepAlive 设置为 false
可能会导致发送连接:
关闭服务器的标头。

因此,如果您使用的是 HTTP/1.1,则是否发送标头并不重要。如果没有 Connection: close 标头,服务器应假定持久连接。

I don't know what controls whether this header should be sent or not, but according to the documentation:

When using HTTP/1.1, Keep-Alive is on
by default. Setting KeepAlive to false
may result in sending a Connection:
Close header to the server.

So if you are using HTTP/1.1 it shouldn't matter whether the header is sent or not. If there is no Connection: close header the server should assume a persistent connection.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文