1 2 3 4 5 6 7 8 9 10 11
|
System.Net.WebRequest request = System.Net.WebRequest.Create(@"http://maps.google.com/maps/geo?q=1600+Amphitheatre+Parkway,+Mountain+View,+CA&output=xml&sensor=false&key=ABQIAAAAi70obljbfciq2phL9gJHyxT2yXp_ZAY8_ufC3CFXhHIE1NvwkxRKuWjxRkxRCvu7194U-s-DbaAZqg");
IAsyncResult asyncResult = null;
asyncResult = request.BeginGetResponse(
x =>
{
// Expression Lambda appelée lorsque la réponse est dispo !
var response = request.EndGetResponse(asyncResult);
MessageBox.Show(new System.IO.StreamReader(response.GetResponseStream()).ReadToEnd());
}, null); |