view tango/example/networking/homepage.d @ 373:d1574e142e93 trunk

[svn r394] Fixed the new DtoNullValue function
author lindquist
date Tue, 15 Jul 2008 15:16:56 +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;
}