NetworkCredential Cache Test : Web Client « Network « C# / C Sharp






NetworkCredential Cache Test

   
/*
C# Network Programming 
by Richard Blum

Publisher: Sybex 
ISBN: 0782141765
*/
using System;
using System.Net;
using System.Text;

public class CredCacheTest
{
   public static void Main()
   {
      WebClient wc = new WebClient();
      string website1 = "http://remote1.ispnet.net";
      string website2 = "http://remote2.ispnet.net";
      string website3 = "http://remote3.ispnet.net/login";


      NetworkCredential nc1 = new NetworkCredential("mike", "guitars");
      NetworkCredential nc2 = new NetworkCredential("evonne", "singing", "home");
      NetworkCredential nc3 = new NetworkCredential("alex", "drums");

      CredentialCache cc = new CredentialCache();
      cc.Add(new Uri(website1), "Basic", nc1);
      cc.Add(new Uri(website2), "Basic", nc2);
      cc.Add(new Uri(website3), "Digest", nc3);

      wc.Credentials = cc;

      wc.DownloadFile(website1, "website1.htm");
      wc.DownloadFile(website2, "website2.htm");
      wc.DownloadFile(website3, "website3.htm");
   }
}


           
         
    
    
  








Related examples in the same category

1.Basic WebClient
2.Save web page from HttpWebResponse
3.Displays the resource specified
4.My Web Client
5.Handle network exceptionsHandle network exceptions
6.Use WebClient to download information into a fileUse WebClient to download information into a file
7.Use LastModifiedUse LastModified
8.Examine the headersExamine the headers
9.Access the InternetAccess the Internet
10.Reading Web Pages
11.NetworkCredential test
12.Download Data Test
13.Download File Test
14.Web GetWeb Get
15.Web Client Upload Values Test
16.Web Client Upload Data Test 2
17.Web Client Response Headers Test
18.Web Client Open Write Test
19.Web Client Open Read Test
20.Gets or sets the network credentials that are sent to the host and used to authenticate the request.
21.Download String
22.Web Downloader
23.Fetches a web page
24.Http Get
25.Returns a site relative HTTP path from a partial path starting out with a ~.
26.Get Web Text
27.HTTP error code
28.Stores/save an image from the web to disk.