Hi!!
I'm developing a Mobile application using the Networking library, and everything is working as expected, using the WebClient class and the FTP protocol.
But I have two questions about it:
Is it possible to enable or disable passive mode in the WebClient class? On the PC side, I've managed to do this by creating a new class, inheriting WebClient, and overriding the function "GetWebRequest", to be able to set the UsePassive property. But on the mobile version I don't know if this is possible, or if there is another way.
I also would like to know if there is some way to show a progress bar when downloading/uploading a file with the WebClient class. On the PC version, it can be done by using the async versions of those functions, and handling the "UploadProgressChanged" / "DownloadProgressChanged" events. I can't see some equivalent to those on the mobile WebClient. Do I have to use the FTPWebRequest directly to achieve this?
Thanks in advance :)