I'm trying use Async CTP to build single function that run async and return a value.
here is my sample code. i don't know why it dont fill the "resp" variable at return.
public async Task<string> sendRequest(string url, string postdata)
{
WebClient client = new WebClient();
byte[] data = Encoding.UTF8.GetBytes(postdata);
Uri uri = new Uri(url);
client.UploadDataAsync(uri,"POST", data);
string resp = "";
await TaskEx.Run(()=>
client.UploadDataCompleted += (e, s) =>
{
resp = System.Text.Encoding.UTF8.GetString(s.Result);
});
return resp;
}
Also I tried this but the program freeze ( do nothing more not just for a while ). maybe any correction can help.
public async Task<string> sendRequest(string url, string postdata)
{
string resp = "";
WebClient client = new WebClient();
byte[] data = Encoding.UTF8.GetBytes(postdata);
Uri uri = new Uri(url);
data = await TaskEx.Run(()=>client.UploadData(uri,"POST", data));
return System.Text.Encoding.UTF8.GetString(data);
}
awaitis waiting until you're subscribed to the event - but no guarantee that the event has actually happened. – Damien_The_Unbeliever Mar 16 '12 at 11:28