request
inline suspend fun HttpClient.request(builder: HttpRequestBuilder = HttpRequestBuilder()): HttpResponse
Content copied to clipboard
Executes a HttpClient request, with the information from the builder
inline suspend fun HttpClient.request(block: HttpRequestBuilder.() -> Unit): HttpResponse
Content copied to clipboard
Executes a HttpClient request, with the information configured in builder block
inline suspend fun HttpClient.request(urlString: String, block: HttpRequestBuilder.() -> Unit = {}): HttpResponse
Content copied to clipboard
Executes a HttpClient request, with the urlString and the information configured in builder block
inline suspend fun HttpClient.request(url: Url, block: HttpRequestBuilder.() -> Unit = {}): HttpResponse
Content copied to clipboard
Executes a HttpClient request, with the url and the information configured in builder block
Creates a HttpRequestBuilder and configures it with a block of code.
suspend fun HttpClient.request(url: URL, block: HttpRequestBuilder.() -> Unit = {}): HttpResponse
Content copied to clipboard
Executes a HttpClient request, with the specified url as URL and an optional block receiving an HttpRequestBuilder for further configuring the request.