openUrl abstract method
Future<HttpClientRequest> openUrl(Opens a HTTP connection.
The HTTP method is specified in method
and the URL to use in url
.
The Host
header for the request will be set to the value Uri.host
:Uri.port from url
. This can be overridden through the HttpClientRequest interface before the request is sent. NOTE if host
is an IP address this will still be set in the Host
header.
For additional information on the sequence of events during an HTTP transaction, and the objects returned by the futures, see the overall documentation for the class HttpClient.
Source
Future<HttpClientRequest> openUrl(String method, Uri url);
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/1.24.3/dart-io/HttpClient/openUrl.html