停止 httpweb 请求?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
调用
中止
在 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.
您可以使用
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.