Chromium Embedded Framework (CEF)  106.0.15+gbb70d04+chromium-106.0.5249.12
cef_cookie_t Struct Reference

Cookie information. More...

#include "include/internal/cef_types.h"

Public Attributes

cef_string_t name
 The cookie name. More...
 
cef_string_t value
 The cookie value. More...
 
cef_string_t domain
 If |domain| is empty a host cookie will be created instead of a domain cookie. More...
 
cef_string_t path
 If |path| is non-empty only URLs at or below the path will get the cookie value. More...
 
int secure
 If |secure| is true the cookie will only be sent for HTTPS requests. More...
 
int httponly
 If |httponly| is true the cookie will only be sent for HTTP requests. More...
 
cef_basetime_t creation
 The cookie creation date. More...
 
cef_basetime_t last_access
 The cookie last access date. More...
 
int has_expires
 The cookie expiration date is only valid if |has_expires| is true. More...
 
cef_basetime_t expires
 
cef_cookie_same_site_t same_site
 Same site. More...
 
cef_cookie_priority_t priority
 Priority. More...
 

Detailed Description

Cookie information.

Member Data Documentation

◆ creation

cef_basetime_t cef_cookie_t::creation

The cookie creation date.

This is automatically populated by the system on cookie creation.

◆ domain

cef_string_t cef_cookie_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

cef_basetime_t cef_cookie_t::expires

◆ has_expires

int cef_cookie_t::has_expires

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

◆ httponly

int cef_cookie_t::httponly

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

◆ last_access

cef_basetime_t cef_cookie_t::last_access

The cookie last access date.

This is automatically populated by the system on access.

◆ name

cef_string_t cef_cookie_t::name

The cookie name.

◆ path

cef_string_t cef_cookie_t::path

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

◆ priority

cef_cookie_priority_t cef_cookie_t::priority

Priority.

◆ same_site

cef_cookie_same_site_t cef_cookie_t::same_site

Same site.

◆ secure

int cef_cookie_t::secure

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

◆ value

cef_string_t cef_cookie_t::value

The cookie value.


The documentation for this struct was generated from the following file: