Basic WebClient : Web Client « Network « C# / C Sharp






Basic WebClient

   


using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.Net;

public class MainClass {
    public static void Main() {
        System.Net.WebClient Client = new WebClient();
        Stream strm = Client.OpenRead("http://www.reuters.com");
        StreamReader sr = new StreamReader(strm);
        string line;
        while ((line = sr.ReadLine()) != null) {
            Console.WriteLine(line);
        }
        strm.Close();
    }
}
           
         
    
    
  








Related examples in the same category

1.Save web page from HttpWebResponse
2.Displays the resource specified
3.My Web Client
4.Handle network exceptionsHandle network exceptions
5.Use WebClient to download information into a fileUse WebClient to download information into a file
6.Use LastModifiedUse LastModified
7.Examine the headersExamine the headers
8.Access the InternetAccess the Internet
9.Reading Web Pages
10.NetworkCredential Cache Test
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.