Chromium Embedded Framework (CEF)
106.0.15+gbb70d04+chromium-106.0.5249.12
|
URL component parts. More...
#include "include/internal/cef_types.h"
Public Attributes | |
cef_string_t | spec |
The complete URL specification. More... | |
cef_string_t | scheme |
Scheme component not including the colon (e.g., "http"). More... | |
cef_string_t | username |
User name component. More... | |
cef_string_t | password |
Password component. More... | |
cef_string_t | host |
Host component. More... | |
cef_string_t | port |
Port number component. More... | |
cef_string_t | origin |
Origin contains just the scheme, host, and port from a URL. More... | |
cef_string_t | path |
Path component including the first slash following the host. More... | |
cef_string_t | query |
Query string component (i.e., everything following the '?'). More... | |
cef_string_t | fragment |
Fragment (hash) identifier component (i.e., the string following the '#'). More... | |
URL component parts.
cef_string_t cef_urlparts_t::fragment |
Fragment (hash) identifier component (i.e., the string following the '#').
cef_string_t cef_urlparts_t::host |
Host component.
This may be a hostname, an IPv4 address or an IPv6 literal surrounded by square brackets (e.g., "[2001:db8::1]").
cef_string_t cef_urlparts_t::origin |
Origin contains just the scheme, host, and port from a URL.
Equivalent to clearing any username and password, replacing the path with a slash, and clearing everything after that. This value will be empty for non-standard URLs.
cef_string_t cef_urlparts_t::password |
Password component.
cef_string_t cef_urlparts_t::path |
Path component including the first slash following the host.
cef_string_t cef_urlparts_t::port |
Port number component.
cef_string_t cef_urlparts_t::query |
Query string component (i.e., everything following the '?').
cef_string_t cef_urlparts_t::scheme |
Scheme component not including the colon (e.g., "http").
cef_string_t cef_urlparts_t::spec |
The complete URL specification.
cef_string_t cef_urlparts_t::username |
User name component.