1

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?

M.Babcock
  • 18,753
  • 6
  • 54
  • 84
Sin5k4
  • 1,556
  • 7
  • 33
  • 57

2 Answers2

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.

Community
  • 1
  • 1
Lander
  • 3,369
  • 2
  • 37
  • 53
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