Chromium Embedded Framework (CEF)
109.0.1+gcd5e37a+chromium-109.0.5414.8
|
Class used to represent a web request. More...
#include "include/cef_request.h"
Public Types | |
typedef std::multimap< CefString, CefString > | HeaderMap |
typedef cef_referrer_policy_t | ReferrerPolicy |
typedef cef_resource_type_t | ResourceType |
typedef cef_transition_type_t | TransitionType |
Public Member Functions | |
virtual bool | IsReadOnly ()=0 |
Returns true if this object is read-only. More... | |
virtual CefString | GetURL ()=0 |
Get the fully qualified URL. More... | |
virtual void | SetURL (const CefString &url)=0 |
Set the fully qualified URL. More... | |
virtual CefString | GetMethod ()=0 |
Get the request method type. More... | |
virtual void | SetMethod (const CefString &method)=0 |
Set the request method type. More... | |
virtual void | SetReferrer (const CefString &referrer_url, ReferrerPolicy policy)=0 |
Set the referrer URL and policy. More... | |
virtual CefString | GetReferrerURL ()=0 |
Get the referrer URL. More... | |
virtual ReferrerPolicy | GetReferrerPolicy ()=0 |
Get the referrer policy. More... | |
virtual CefRefPtr< CefPostData > | GetPostData ()=0 |
Get the post data. More... | |
virtual void | SetPostData (CefRefPtr< CefPostData > postData)=0 |
Set the post data. More... | |
virtual void | GetHeaderMap (HeaderMap &headerMap)=0 |
Get the header values. More... | |
virtual void | SetHeaderMap (const HeaderMap &headerMap)=0 |
Set the header values. More... | |
virtual CefString | GetHeaderByName (const CefString &name)=0 |
Returns the first header value for |name| or an empty string if not found. More... | |
virtual void | SetHeaderByName (const CefString &name, const CefString &value, bool overwrite)=0 |
Set the header |name| to |value|. More... | |
virtual void | Set (const CefString &url, const CefString &method, CefRefPtr< CefPostData > postData, const HeaderMap &headerMap)=0 |
Set all values at one time. More... | |
virtual int | GetFlags ()=0 |
Get the flags used in combination with CefURLRequest. More... | |
virtual void | SetFlags (int flags)=0 |
Set the flags used in combination with CefURLRequest. More... | |
virtual CefString | GetFirstPartyForCookies ()=0 |
Get the URL to the first party for cookies used in combination with CefURLRequest. More... | |
virtual void | SetFirstPartyForCookies (const CefString &url)=0 |
Set the URL to the first party for cookies used in combination with CefURLRequest. More... | |
virtual ResourceType | GetResourceType ()=0 |
Get the resource type for this request. More... | |
virtual TransitionType | GetTransitionType ()=0 |
Get the transition type for this request. More... | |
virtual uint64 | GetIdentifier ()=0 |
Returns the globally unique identifier for this request or 0 if not specified. More... | |
Public Member Functions inherited from CefBaseRefCounted | |
virtual void | AddRef () const =0 |
Called to increment the reference count for the object. More... | |
virtual bool | Release () const =0 |
Called to decrement the reference count for the object. More... | |
virtual bool | HasOneRef () const =0 |
Returns true if the reference count is 1. More... | |
virtual bool | HasAtLeastOneRef () const =0 |
Returns true if the reference count is at least 1. More... | |
Static Public Member Functions | |
static CefRefPtr< CefRequest > | Create () |
Create a new CefRequest object. More... | |
Additional Inherited Members | |
Protected Member Functions inherited from CefBaseRefCounted | |
virtual | ~CefBaseRefCounted () |
Class used to represent a web request.
The methods of this class may be called on any thread.
typedef std::multimap<CefString, CefString> CefRequest::HeaderMap |
|
static |
Create a new CefRequest object.
|
pure virtual |
Get the URL to the first party for cookies used in combination with CefURLRequest.
|
pure virtual |
Get the flags used in combination with CefURLRequest.
See cef_urlrequest_flags_t for supported values.
Returns the first header value for |name| or an empty string if not found.
Will not return the Referer value if any. Use GetHeaderMap instead if |name| might have multiple values.
|
pure virtual |
Get the header values.
Will not include the Referer value if any.
|
pure virtual |
Returns the globally unique identifier for this request or 0 if not specified.
Can be used by CefResourceRequestHandler implementations in the browser process to track a single request across multiple callbacks.
|
pure virtual |
Get the request method type.
The value will default to POST if post data is provided and GET otherwise.
|
pure virtual |
Get the post data.
|
pure virtual |
Get the referrer policy.
|
pure virtual |
Get the referrer URL.
|
pure virtual |
Get the resource type for this request.
Only available in the browser process.
|
pure virtual |
Get the transition type for this request.
Only available in the browser process and only applies to requests that represent a main frame or sub-frame navigation.
|
pure virtual |
Get the fully qualified URL.
|
pure virtual |
Returns true if this object is read-only.
|
pure virtual |
Set all values at one time.
|
pure virtual |
Set the URL to the first party for cookies used in combination with CefURLRequest.
|
pure virtual |
Set the flags used in combination with CefURLRequest.
See cef_urlrequest_flags_t for supported values.
|
pure virtual |
Set the header |name| to |value|.
If |overwrite| is true any existing values will be replaced with the new value. If |overwrite| is false any existing values will not be overwritten. The Referer value cannot be set using this method.
|
pure virtual |
Set the header values.
If a Referer value exists in the header map it will be removed and ignored.
|
pure virtual |
Set the request method type.
|
pure virtual |
Set the post data.
|
pure virtual |
Set the referrer URL and policy.
If non-empty the referrer URL must be fully qualified with an HTTP or HTTPS scheme component. Any username, password or ref component will be removed.
|
pure virtual |
Set the fully qualified URL.