IFrameCreateUrlRequest Method |
Version 130.1.90
Create a new URL request that will be treated as originating from this frame
and the associated browser. This request may be intercepted by the client via
IResourceRequestHandler or
ISchemeHandlerFactory.
Use IUrlRequest.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 method).
Requests may originate from both the browser process and the render process.
For requests originating from the browser process: - POST data may only contain a single element
of type PDE_TYPE_FILE or PDE_TYPE_BYTES.
For requests originating from the render process: - POST data may only contain a single element of type PDE_TYPE_BYTES.
- If the response contains Content-Disposition or Mime-Type header values that would not normally be rendered then
the response may receive special handling inside the browser
for example, via the file download code path instead of the URL request code path).
The request object will be marked as read-only after calling this method.
Namespace: CefSharpAssembly: CefSharp (in CefSharp.dll) Version: 129.0.110.0 (129.0.110.0)
Syntax IUrlRequest CreateUrlRequest(
IRequest request,
IUrlRequestClient client
)
IUrlRequest^ CreateUrlRequest(
IRequest^ request,
IUrlRequestClient^ client
)
Parameters
- request IRequest
- the web request
- client IUrlRequestClient
- the client
Return Value
IUrlRequest[Missing <returns> documentation for "M:CefSharp.IFrame.CreateUrlRequest(CefSharp.IRequest,CefSharp.IUrlRequestClient)"]
See Also