WebClient.BaseAddress : WebClient « System.Net « C# / C Sharp by API






WebClient.BaseAddress

 


using System;
using System.IO;
using System.Net;

public class TryURL {
  public static void Main(String [] args) {
    WebClient client = new WebClient();
    client.BaseAddress = "http://www.java2s.com";
    client.DownloadFile("www.java2s.com", "index.htm");
    StreamReader input =new StreamReader(client.OpenRead("index.htm"));
    Console.WriteLine(input.ReadToEnd());
    Console.WriteLine
      ("Request header count: {0}", client.Headers.Count);
    WebHeaderCollection header = client.ResponseHeaders;
    Console.WriteLine
      ("Response header count: {0}", header.Count);
    for (int i = 0; i < header.Count; i++)
      Console.WriteLine("   {0} : {1}", 
                          header.GetKey(i), header[i]);
    input.Close();
  }
}    
    

   
  








Related examples in the same category

1.WebClient.Credentials
2.WebClient.DownloadData
3.WebClient.DownloadFile
4.WebClient.DownloadString(Uri u)
5.WebClient.Headers
6.WebClient.OpenRead(String url)
7.WebClient.OpenWrite
8.WebClient.ResponseHeaders
9.WebClient.UploadData
10.WebClient.UploadValues