gpt4 book ai didi

c# - 为什么我只能调用一次 GetResponseStream()

转载 作者:行者123 更新时间:2023-11-30 19:42:11 42 4
gpt4 key购买 nike

我刚刚注意到 C# 中的某些行为让我有些不快。我正在使用 C# 5 和 .NET 4.5。当我在 HTTPResponse 对象上调用 GetResponseStream() 时,我能够获得响应流,但如果我在同一个对象上再次调用它,则响应为空。

// Works! Body of the response is in the source variable.
HttpResponse response = (HttpWebResponse)request.GetResponse();
String source = new StreamReader(response.GetResponseStream()).ReadToEnd();

// Does Not Work. Source is empty;
String source2 = new StreamReader(response.GetResponseStream()).ReadToEnd();

以上只是一个例子来说明问题。

编辑

这就是我想要做的。基本上,如果事件附加到 HTTP 对象,它会将响应传递回回调方法。

HttpWebResponse public Get(String url)
{
// HttpWebRequest ...

HttpWebResponse response = (HttpWebResponse)request.GetResponse();

// postRequest is an event handler. The response is passed to the
// callback to do whatever it needs to do.
if (this.postRequest != null)
{
RequestEventArgs requestArgs = new RequestEventArgs();
requestArgs.source = response;
postRequest.Invoke(this, requestArgs);
}

return response;
}

在回调方法中,我可能想检查响应的主体。如果这样做,我将在 Get() 返回响应时丢失响应中的数据。

最佳答案

响应流直接从网络连接读取。

一旦读到最后(第 2 行),就没有更多数据可读了。

关于c# - 为什么我只能调用一次 GetResponseStream(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17891736/

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