4

I Have downloaded community edition of OpenNETCF from this link, And Trying to access FTP. But I am not able to find WebRequestMethods class in OpenNETCF.Net or OpenNETCF.Net.Ftp Namespace. Please help and suggest if I am missing something.

Siddharood
  • 908
  • 1
  • 12
  • 24

1 Answers1

2

The OpenNETCF namespaces don't have the WebRequestmethods.Ftp items. They are simply constant strings, so you could easily create them something like this:

public static class WebRequestMethods
{
    public const string ListDirectoryDetails = "LIST";
    public const string DownloadFile = "RETR";
    // etc.
}
ctacke
  • 66,480
  • 18
  • 94
  • 155