C# asp.net Web 表单中的页面生命周期和异步请求

发布于 2024-12-09 21:19:53 字数 382 浏览 0 评论 0原文

如果我发送 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 技术交流群。

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

发布评论

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

评论(1

千纸鹤带着心事 2024-12-16 21:19:53

如果您想等待 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.

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