一旦服务器开始响应我的mymethod()
,我需要在ex HttpWebRequest
的新主题中调用一个方法。
我在下面使用发送http请求并获得响应。
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(MyUrl);
HttpWebResponse response = (HttpWebResponse)request.GetResponse ();
现在,当我需要在新线程中调用方法request
时服务器开始响应,我需要的是mymethod()
。但问题是我不知道如何检测服务器已经开始响应(启动响应流)我的请求。
什么方式告诉我服务器开始响应,我可以调用我的方法。
目标框架:是.net framework 4.5,我的项目是Windows Form应用程序。
答案 0 :(得分:2)
我能想到的最接近的是使用HttpClient
并传递HttpCompletionOption.ResponseHeadersRead
,因此您可以在发送标头后开始接收请求,然后开始处理响应的其余部分:
public async Task ProcessRequestAsync()
{
var httpClient = new HttpClient();
var response = await httpClient.GetAsync(
url,
HttpCompletionOption.ResponseHeadersRead);
// When we reach this, only the headers have been read.
// Now, you can run your method
FooMethod();
// Continue reading the response. Change this to whichever
// output type you need (string, stream, etc..)
var content = response.Content.ReadAsStringAsync();
}