Companion

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override var ignoreSslCertificates: Boolean

Functions

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
operator fun invoke(): HttpClient
Link copied to clipboard
operator fun HttpClient.Companion.invoke(fetch: HttpFetch = HttpFetch): HttpClient
Link copied to clipboard
open suspend override fun post(url: String, data: HttpBodyContent, headers: Http.Headers = Http.Headers(), config: HttpClient.RequestConfig = RequestConfig.DEFAULT): HttpClient.Response
Link copied to clipboard
open suspend override fun readBytes(url: String, config: HttpClient.RequestConfig = RequestConfig()): ByteArray
Link copied to clipboard
open suspend override fun readJson(url: String, config: HttpClient.RequestConfig = RequestConfig()): Any?
Link copied to clipboard
open suspend override fun readString(url: String, config: HttpClient.RequestConfig = RequestConfig()): String
Link copied to clipboard
open suspend override fun request(method: Http.Method, url: String, headers: Http.Headers = Http.Headers(), content: AsyncInputStreamWithLength? = null, config: HttpClient.RequestConfig = RequestConfig.DEFAULT): HttpClient.Response
open suspend override fun request(method: Http.Method, url: String, data: HttpBodyContent, headers: Http.Headers = Http.Headers(), config: HttpClient.RequestConfig = RequestConfig.DEFAULT): HttpClient.Response
Link copied to clipboard
open suspend override fun requestAsBytes(method: Http.Method, url: String, headers: Http.Headers = Http.Headers(), content: AsyncStream? = null, config: HttpClient.RequestConfig = RequestConfig()): HttpClient.CompletedResponse<ByteArray>
Link copied to clipboard
open suspend override fun requestAsString(method: Http.Method, url: String, headers: Http.Headers = Http.Headers(), content: AsyncStream? = null, config: HttpClient.RequestConfig = RequestConfig()): HttpClient.CompletedResponse<String>
Link copied to clipboard
open suspend override fun requestInternal(method: Http.Method, url: String, headers: Http.Headers = Http.Headers(), content: AsyncInputStreamWithLength? = null): HttpClient.Response
Link copied to clipboard