open fun request(method: HttpMethod, port: Int, host: String, requestURI: String): HttpRequest<Buffer>
Create an HTTP request to send to the server at the specified host and port.
Return
an HTTP client request object
open fun request(method: HttpMethod, host: String, requestURI: String): HttpRequest<Buffer>
Create an HTTP request to send to the server at the specified host and default port.
Return
an HTTP client request object
open fun request(method: HttpMethod, requestURI: String): HttpRequest<Buffer>
Create an HTTP request to send to the server at the default host and port.
Return
an HTTP client request object
open fun request(method: HttpMethod, options: RequestOptions): HttpRequest<Buffer>
Create an HTTP request to send to the server at the specified host and port.
Return
an HTTP client request object