Supports the basic needs of a client making requests of an HTTP
server. The following is a usage example:
// 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();