Freigeben über


interface ICoreWebView2WebResourceRequestedEventArgs

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 Set the Response property.

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 later on.

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 will be completed with this 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 request at a later time.

put_Response

Set the Response property.

public HRESULT put_Response(ICoreWebView2WebResourceResponse * response)

An empty Web resource response object can be created with CreateWebResourceResponse and then modified to construct the response.