Overview   Project   Class   Tree   Index 
CEF C++ API Docs - Revision 1123
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD

(default)
Struct _cef_cookie_t

   in cef_types.h

struct _cef_cookie_t

Cookie information.


Field Summary
 cef_time_t creation
          The cookie creation date.
 cef_string_t domain
          If |domain| is empty a host cookie will be created instead of a domain cookie.
 cef_time_t expires
          
 bool has_expires
          The cookie expiration date is only valid if |has_expires| is true.
 bool httponly
          If |httponly| is true the cookie will only be sent for HTTP requests.
 cef_time_t last_access
          The cookie last access date.
 cef_string_t name
          The cookie name.
 cef_string_t path
          If |path| is non-empty only URLs at or below the path will get the cookie value.
 bool secure
          If |secure| is true the cookie will only be sent for HTTPS requests.
 cef_string_t value
          The cookie value.
 

Field Detail

creation

public cef_time_t creation;
The cookie creation date. This is automatically populated by the system on cookie creation.

domain

public cef_string_t domain;
If |domain| is empty a host cookie will be created instead of a domain cookie. Domain cookies are stored with a leading "." and are visible to sub-domains whereas host cookies are not.

expires

public cef_time_t expires;

has_expires

public bool has_expires;
The cookie expiration date is only valid if |has_expires| is true.

httponly

public bool httponly;
If |httponly| is true the cookie will only be sent for HTTP requests.

last_access

public cef_time_t last_access;
The cookie last access date. This is automatically populated by the system on access.

name

public cef_string_t name;
The cookie name.

path

public cef_string_t path;
If |path| is non-empty only URLs at or below the path will get the cookie value.

secure

public bool secure;
If |secure| is true the cookie will only be sent for HTTPS requests.

value

public cef_string_t value;
The cookie value.

 Overview   Project   Class   Tree   Index 
CEF C++ API Docs - Revision 1123
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD

Chromium Embedded Framework (CEF) Copyright © 2011 Marshall A. Greenblatt