Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Note
This reference is no longer being maintained. For the latest API reference, see WebView2 API Reference.
interface ICoreWebView2WebResourceRequestedEventArgs
: public IUnknown
Event args for the WebResourceRequested
event.
Summary
Members | Descriptions |
---|---|
get_Request | The Web resource request. |
get_ResourceContext | The web resource request context. |
get_Response | A placeholder for the web resource response object. |
GetDeferral | Obtain an ICoreWebView2Deferral object and put the event into a deferred state. |
put_Response | Sets the Response property. |
Applies to
Product | Introduced |
---|---|
WebView2 Win32 | 0.9.430 |
WebView2 Win32 Prerelease | 0.9.488 |
Members
get_Request
The Web resource request.
public HRESULT get_Request(ICoreWebView2WebResourceRequest ** request)
The request object may be missing some headers that are added by network stack at a later time.
get_ResourceContext
The web resource request context.
public HRESULT get_ResourceContext(COREWEBVIEW2_WEB_RESOURCE_CONTEXT * context)
get_Response
A placeholder for the web resource response object.
public HRESULT get_Response(ICoreWebView2WebResourceResponse ** response)
If this object is set, the web resource request is completed with the specified response.
GetDeferral
Obtain an ICoreWebView2Deferral object and put the event into a deferred state.
public HRESULT GetDeferral(ICoreWebView2Deferral ** deferral)
Use the ICoreWebView2Deferral object to complete the request at a later time.
put_Response
Sets the Response
property.
public HRESULT put_Response(ICoreWebView2WebResourceResponse * response)
Create an empty web resource response object with CreateWebResourceResponse
and then modify it to construct the response.