停止 httpweb 请求?

发布于 2025-01-02 10:51:46 字数 114 浏览 1 评论 0原文

我在 sub 中做了一个 httpwebrequest 。我的程序上的表单有一个调用子程序的开始按钮。我想向其添加一个“停止”按钮,以停止 httwebrequest(如果用户选择)。

我该怎么做?

I made a httpwebrequest in a sub. The form on my program has a start button which calls the sub. I want to add a Stop button to it to stop the httwebrequest if the user so chooses.

How would I do this?

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

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

发布评论

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

评论(2

沩ん囻菔务 2025-01-09 10:51:46

调用中止在 HttpWebRequest 上。

请注意,这可能会导致一些奇怪的行为...例如:根据您发出请求的方式以及请求的状态,这可能会导致死锁。

Call Abort on the HttpWebRequest.

BEWARE that this might cause some strange behaviour... for example: depending on how you made the request and in what state it is this might lead to a deadlock.

居里长安 2025-01-09 10:51:46

您可以使用 HttpWebRequest.Abort() 方法来停止 HTTP 请求。

请参阅以下 MSDN 链接获取示例。

You could use the HttpWebRequest.Abort() method to stop your HTTP request.

Please see the following MSDN link for an example.

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