Because this is winnetcf not sure if anyone can answer me. I'm not sure what i'm doing wrong. I looked at quite a few forums and it would seem that it would work. I get a "NotSupportedException at System.Net.WebRequest.Create()"

Code:
Imports OpenNETCF.Net.Ftp
Imports System.Net
Private Sub ftp()
...
        Dim testUri As New Uri("ftp://11.22.333.44")
        Dim fwr As FtpWebRequest = FtpWebRequest.Create(testUri)
        fwr.Credentials = New NetworkCredential(un, pw)
        fwr.Method = WebRequestMethods.Ftp.DownloadFile
...
end sub