C# asp.net Web 表单中的页面生命周期和异步请求
如果我发送 HttpWebRequest 并使用 BeginGetResponse 和回调将其发送出去,我的回调永远不会被命中。该页面在给出响应之前完成。
我如何获取响应?
我尝试设置一个计时器:
ThreadPool.RegisterWaitForSingleObject(result.AsyncWaitHandle, new WaitOrTimerCallback(TimeoutCallback), null, DefaultTimeout, true);
但如果 DefaultTimeout (以毫秒为单位)设置为 1 毫秒,它就会到达回调。但如果将其设置为 30 秒,则回调永远不会被触发。
如何再次访问请求/结果?
If I send an HttpWebRequest and send it out with BeginGetResponse with a callback, my callback never gets hit. THe page finishes before the response is given.
How do I grab the response?
I have tried setting a timer:
ThreadPool.RegisterWaitForSingleObject(result.AsyncWaitHandle, new WaitOrTimerCallback(TimeoutCallback), null, DefaultTimeout, true);
but again if DefaultTimeout (in milliseonds) is set to 1 millisecond, it reaches the callback. But if it is set to 30 seconds, then the callback never gets fired.
How do I access the request/result again?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想等待 Web 请求完成后再允许代码继续执行,则需要使用同步 GetResponse 方法而不是异步 BeginGetResponse 方法。这将阻塞当前线程,直到请求完成。
If you want to wait for the web request to complete before allowing your code to continue executing, you'll need to use the synchronous GetResponse method instead of the asynchronous BeginGetResponse method. This will block the current thread until the request completes.