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