-1

PHP をバックエンドとして使用するリモート MySQL データベースを使用して、WP7 アプリで簡単なログイン機能を作成したいと考えています。C# でこれを使用したことがないため、これを行う方法がわかりません。

4

1 に答える 1

2

WebClientまたはHttpWebRequestクラスを使用して、Web 要求を作成し、応答を取得できます。

リクエストを作成してレスポンスを取得する方法のサンプル コードを次に示します。

WebClient client = new WebClient();
client.DownloadStringCompleted += new DownloadStringCompletedEventHandler(client_DownloadStringCompleted);
client.DownloadStringAsync(new Uri("http://someurl", UriKind.Absolute));

そして、非同期応答ハンドラーはここにあります

void client_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
{
    var response= e.Result; // Response obtained from the web service  
}

上記の例は、任意の Web サービス ( PHP、jsp、asp など) で機能します。

あなたがする必要があるのは、適切なリクエストを行い、レスポンスを処理することだけです

于 2012-06-25T09:48:20.887 に答える