cef_navigation_entry_t

Structure used to represent an entry in navigation history.

Members

Variables

base
cef_base_ref_counted_t base;

Base structure.

get_completion_time
cef_basetime_t function(cef_navigation_entry_t* self) nothrow get_completion_time;

Returns the time for the last known successful navigation completion. A navigation may be completed more than once if the page is reloaded. May be 0 if the navigation has not yet completed.

get_http_status_code
int function(cef_navigation_entry_t* self) nothrow get_http_status_code;

Returns the HTTP status code for the last known successful navigation response. May be 0 if the response has not yet been received or if the navigation has not yet completed.

get_original_url
cef_string_userfree_t function(cef_navigation_entry_t* self) nothrow get_original_url;

Returns the original URL that was entered by the user before any redirects.

get_sslstatus
cef_sslstatus_t* function(cef_navigation_entry_t* self) nothrow get_sslstatus;

Returns the SSL information for this navigation entry.

get_title
cef_string_userfree_t function(cef_navigation_entry_t* self) nothrow get_title;

Returns the title set by the page. This value may be NULL.

get_transition_type
cef_transition_type_t function(cef_navigation_entry_t* self) nothrow get_transition_type;

Returns the transition type which indicates what the user did to move to this page from the previous page.

has_post_data
int function(cef_navigation_entry_t* self) nothrow has_post_data;

Returns true (1) if this navigation includes post data.

Meta