cef_frame_t.create_urlrequest

Create a new URL request that will be treated as originating from this frame and the associated browser. Use cef_urlrequest_t::Create instead if you do not want the request to have this association, in which case it may be handled differently (see documentation on that function). A request created with this function may only originate from the browser process, and will behave as follows: - It may be intercepted by the client via CefResourceRequestHandler or CefSchemeHandlerFactory. - POST data may only contain a single element of type PDE_TYPE_FILE or PDE_TYPE_BYTES.

The |request| object will be marked as read-only after calling this function.

struct cef_frame_t
extern (System)
cef_urlrequest_t* function(cef_frame_t* self, cef_request_t* request, cef_urlrequest_client_t* client) nothrow create_urlrequest;

Meta