私はビジュアルスタジオとWindows phone 7を使用してスマートフォンのftpクライアントを開発しています
私はいくつかのエラーに直面しています
request.Method = WebRequestMethods.ftp.ListDirectory
エラー 1 対象のプラットフォームは遅延バインディングをサポートしていません。C:\Users\Zaheer\Documents\Visual Studio 2010\Projects\PhoneApp4\PhoneApp4\MainPage.xaml.vb 36 30 PhoneApp4
応答 = CType(request.GetWebResponse(), WebResponse) エラー 2 'GetWebResponse' は 'System.Net.WebRequest' のメンバーではありません。C:\Users\Zaheer\Documents\Visual Studio 2010\Projects\PhoneApp4\PhoneApp4\MainPage.xaml.vb 37 30 PhoneApp4
ここに完全なコードがあります私を助けてください
Dim Request As WebRequest = Nothing
Dim Response As WebResponse = Nothing
Dim reader As StreamReader = Nothing
Dim Port As Integer = 21
Try
Request = CType(WebRequest.Create(URL), WebRequest)
Request.Method = "List"
Request.Credentials = New NetworkCredential(Username, Password)
Request.Method = WebRequestMethods.Ftp.ListDirectory
Response = CType(Response.GetWebRequest(), WebResponse)
reader = New StreamReader(Response.GetResponseStream())
While (reader.Peek() > -1)
RemoteSite.Items.Add(reader.ReadLine())
End While
Catch ex As Exception
Console.WriteLine("List Sucessfully.")
End Try
End Sub