using System;
using System.Collections.Generic;
using System.Web;
using System.Net;
using System.Text;
namespace WebRequestTest
{
class Program
{
static void Main(string[] args)
{
try
{
WebClient wc = new WebClient();
Uri u = new Uri("http://192.168.1.211/android_res/version.txt");
wc.DownloadStringCompleted += new DownloadStringCompletedEventHandler(OnDownloadStringComplete);
wc.DownloadStringAsync(u);
Console.Read();
}
catch (Exception e)
{
Console.WriteLine(e.ToString());
}
}
private static void OnDownloadStringComplete(object sender, DownloadStringCompletedEventArgs e)
{
string result = e.Result;
Console.WriteLine("下载完成:");
Console.WriteLine(result);
}
}
}
运行效果: