Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经从此链接下载了 OpenNETCF 的社区版,并尝试访问 FTP。但我无法在 OpenNETCF.Net 或 OpenNETCF.Net.Ftp 命名空间中找到 WebRequestMethods 类。如果我遗漏了什么,请提供帮助并提出建议。
OpenNETCF 命名空间没有 WebRequestmethods.Ftp 项。它们只是常量字符串,因此您可以轻松地创建它们,如下所示:
public static class WebRequestMethods { public const string ListDirectoryDetails = "LIST"; public const string DownloadFile = "RETR"; // etc. }