R rainersnookh Member Licensed User Longtime User Mar 23, 2011 #1 I'm using http.GetAsynchronously to start a download, is there any way to cancel the transfer once started?
I'm using http.GetAsynchronously to start a download, is there any way to cancel the transfer once started?
Erel B4X founder Staff member Licensed User Longtime User Mar 23, 2011 #2 You can close the OutputStream you passed to the GetAsynchronously method. It will cause it to fail the download. Upvote 0
You can close the OutputStream you passed to the GetAsynchronously method. It will cause it to fail the download.
R rainersnookh Member Licensed User Longtime User Mar 23, 2011 #3 Thanks, didnt dim the outputstream as an object so i got bit stuck there. Upvote 0