prepareGet
inline suspend fun HttpClient.prepareGet(builder: HttpRequestBuilder): HttpStatement
Content copied to clipboard
Prepares a HttpClient GET request, with the information from the builder
inline suspend fun HttpClient.prepareGet(block: HttpRequestBuilder.() -> Unit): HttpStatement
Content copied to clipboard
Prepares a HttpClient GET request, with the information from the builder
inline suspend fun HttpClient.prepareGet(urlString: String, block: HttpRequestBuilder.() -> Unit = {}): HttpStatement
Content copied to clipboard
Prepares a HttpClient GET request, with the specified url as URL and an optional block receiving an HttpRequestBuilder for further configuring the request.
inline suspend fun HttpClient.prepareGet(url: Url, block: HttpRequestBuilder.() -> Unit = {}): HttpStatement
Content copied to clipboard
Prepares a HttpClient GET request, with the specified url as Url and an optional block receiving an HttpRequestBuilder for further configuring the request.
suspend fun HttpClient.prepareGet(url: URL, block: HttpRequestBuilder.() -> Unit = {}): HttpStatement
Content copied to clipboard
Prepares a HttpClient GET request, with the specified url as URL and an optional block receiving an HttpRequestBuilder for further configuring the request.
Tries to receive a specific type T, if fails, an exception is thrown.