tango.net.http.HttpGet

License:

BSD style: see license.txt

Version:

Initial release: January 2006

Author:

Kris
class HttpGet : HttpClient
Supports the basic needs of a client making requests of an HTTP server. The following is a usage example:
1
2
3
4
5
// open a web-page for reading (see HttpPost for writing)
auto page = new HttpGet ("http://www.digitalmars.com/d/intro.html");

// retrieve and flush display content
Cout (cast(char[]) page.read) ();
this(const(char)[] url)
Create a client for the given URL. The argument should be fully qualified with an "http:" or "https:" scheme, or an explicit port should be provided.
this(Uri uri)
Create a client with the provided Uri instance. The Uri should be fully qualified with an "http:" or "https:" scheme, or an explicit port should be provided.
void[] read()