hunt.http.Cookie

Undocumented in source.

Members

Aliases

CookieParsingHandler
alias CookieParsingHandler = void delegate(string name, string value)
Undocumented in source.
HttpCookie
alias HttpCookie = Cookie
Undocumented in source.

Classes

Cookie
class Cookie

An HttpCookie object represents an HTTP cookie, which carries state information between server and user agent. Cookie is widely adopted to create stateful sessions.

Functions

generateCookie
string generateCookie(Cookie cookie)
Undocumented in source. Be warned that the author may not have intended to support it.
generateCookies
string generateCookies(Cookie[] cookies)
Undocumented in source. Be warned that the author may not have intended to support it.
generateCookies
string generateCookies(List!Cookie cookies)
Undocumented in source. Be warned that the author may not have intended to support it.
generateSetCookie
string generateSetCookie(Cookie cookie)
Undocumented in source. Be warned that the author may not have intended to support it.
parseCookie
Cookie[] parseCookie(string cookieStr)
Undocumented in source. Be warned that the author may not have intended to support it.
parseCookies
void parseCookies(string cookieStr, CookieParsingHandler callback)
Undocumented in source. Be warned that the author may not have intended to support it.
parseSetCookie
Cookie parseSetCookie(string cookieStr)
Undocumented in source. Be warned that the author may not have intended to support it.

Meta