im trying to develop an app for a win CE mobile device that downloads an exe file from an ftp server,and the problem is,i cant seem to reach webclient class and i am using system.net library...Any ideas?
Asked
Active
Viewed 2,636 times
2 Answers
2
The class simply doesn't seem to be supported. See: MSDN documentation. If you need to use FTP, you could try using the FTP class linked here.
0
Confusingly, the WebClient class is a member of the System assembly, not System.Net
Source: http://msdn.microsoft.com/en-us/library/system.net.webclient(v=vs.90).aspx

KingCronus
- 4,509
- 1
- 24
- 49
-
`Confusing is subjective` That's true. It makes perfect sense to not include webclient in `System.Web` - Otherwise it would not be available on the Client Profile. – Jürgen Steinblock Mar 24 '14 at 13:00