struct HttpCookie : public Moveable<HttpCookie>
This simple structure is used to store information about HTTP Cookie.
String id
The name of cookie.
String value
Value of cookie.
String domain
Cookie domain.
String path
Cookie path.
String raw
Unparsed cookie.
void Clear()
Clears all member variables.
bool Parse(const String& cookie)
Parses cookie into member variables - expects the format of value of HTTP "Set-Cookie" header.
|