interface ICoreWebView2WebResourceRequestedEventArgs

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 HTTP request.
get_Response The HTTP response.
put_Response Set the Response property.
GetDeferral Obtain an ICoreWebView2Deferral object and put the event into a deferred state.
get_ResourceContext The web resource request contexts.

Members

get_Request

The HTTP request.

public HRESULT get_Request(ICoreWebView2WebResourceRequest ** request)

get_Response

The HTTP response.

public HRESULT get_Response(ICoreWebView2WebResourceResponse ** response)

put_Response

Set the Response property.

public HRESULT put_Response(ICoreWebView2WebResourceResponse * response)

GetDeferral

Obtain an ICoreWebView2Deferral object and put the event into a deferred state.

public HRESULT GetDeferral(ICoreWebView2Deferral ** deferral)

You can use the ICoreWebView2Deferral object to complete the network request at a later time.

get_ResourceContext

The web resource request contexts.

public HRESULT get_ResourceContext(CORE_WEBVIEW2_WEB_RESOURCE_CONTEXT * context)