view tango/example/networking/homepage.d @ 243:4d006f7b2ada trunk

[svn r260] Changed some of the LLVMDC specific code in the Tango core and did some minor cleanups.
author lindquist
date Mon, 09 Jun 2008 03:02:14 +0200
parents 1700239cab2e
children
line wrap: on
line source


private import  tango.io.Console;

private import  tango.net.http.HttpClient,
                tango.net.http.HttpHeaders;

/*******************************************************************************

        Shows how to use HttpClient to retrieve content from the D website
        
*******************************************************************************/

void main()
{
        auto client = new HttpClient (HttpClient.Get, "http://www.digitalmars.com/d/intro.html");

        // open the client and get the input stream
        auto input = client.open;
        scope (exit)
               client.close;
        
        // display returned content on console
        if (client.isResponseOK)
            Cout.stream.copy (input);
        else
           Cout ("failed to return the D home page");  

        // flush the console
        Cout.newline;
}