class AcceptAllCookiesStorage : CookiesStorage
CookiesStorage that stores all the cookies in an in-memory map. |
|
class ConstantCookiesStorage : CookiesStorage
CookiesStorage that ignores addCookie and returns a list of specified cookies when constructed. |
|
interface CookiesStorage
Storage for Cookie. |
|
class HttpCookies
HttpClient feature that handles sent |
suspend fun CookiesStorage.addCookie(urlString: String, cookie: Cookie): Unit
|
|
suspend fun HttpClient.cookies(url: Url): List<Cookie>
Gets all the cookies for the specified url for this HttpClient. suspend fun HttpClient.cookies(urlString: String): List<Cookie>
Gets all the cookies for the specified urlString for this HttpClient. |