如何使用 TIdHTTP 停止(取消)下载
我在线程中使用 TIdHTTP.Get
过程来下载文件。我的问题是如何停止(取消)文件的下载?
I'm using the TIdHTTP.Get
procedure in a thread to download a file . My question is how I can stop (cancel) the download of the file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我会尝试通过使用 Abort 方法抛出静默异常来取消它 < a href="http://www.indyproject.org/docsite/html/frames.html?frmname=topic&frmfile=TIdTCPConnection_OnWork.html" rel="noreferrer">TIdHTTP.OnWork 事件。此事件会在读/写操作时触发,因此在下载过程中也会触发该事件。
或者正如这里提到的,要直接断开连接,您可以使用
I would try to cancel it by throwing an silent exception using Abort method in the TIdHTTP.OnWork event. This event is fired for read/write operations, so it's fired also in your downloading progress.
Or as it was mentioned here, for direct disconnection you can use Disconnect method in the same event.
您可以使用默认过程 idhttp1.Disconnect...
You could use the default procedure idhttp1.Disconnect...