Sorry, but there are no more tags available to filter with.
-
Hi. Can anyone see what is wrong with the following code: Dim ftpReqCreator As New FtpRequestCreator WebRequest.RegisterPrefix("ftp:", ftpReqCreator) Dim ftpUri As New Uri("ftp://" + LAN_FTP_Server + "/" + filename) Dim ftpReq As FtpWebRequest = WebRequest.Create(ftpUri...
-
BeginConnect is asynchronous, meaning that you won't be connected when the call returns. You have to wait for the connection to be made befoe doing a transfer. The reason for this is that some servers have a long timeout, and you app could hang for a long time if it were synchronous.
-
Take a look at our new shared-source library available here .
-
Looking for a simple, managed, shared-source mechanism for FTP client functionality? Look no further that the OpenNETCF.Net.Ftp namespace. OpenNETCF.Net.Ftp.zip
Page 1 of 1 (4 items)