Download Data Test

image_pdfimage_print
   


using System;
using System.Net;
using System.Text;

public class DownloadDataTest
{
   public static void Main(string[] argv)
   {
      WebClient wc = new WebClient();
      byte[] response = wc.DownloadData(argv[0]);
      Console.WriteLine(Encoding.ASCII.GetString(response));
   }
}


           
          


This entry was posted in C# Network. Bookmark the permalink.