Trait webview2_sys::ICoreWebView2WebResourceResponseReceivedEventArgs[][src]

pub trait ICoreWebView2WebResourceResponseReceivedEventArgs: IUnknown {
    unsafe fn get_request(
        &self,
        request: *mut *mut *mut ICoreWebView2WebResourceRequestVTable
    ) -> HRESULT;
unsafe fn get_response(
        &self,
        response: *mut *mut *mut ICoreWebView2WebResourceResponseViewVTable
    ) -> HRESULT; }
Expand description

Event args for the WebResourceResponseReceived event.

Required methods

The request object for the web resource, as committed. This includes headers added by the network stack that were not be included during the associated WebResourceRequested event, such as Authentication headers. Modifications to this object have no effect on how the request is processed as it has already been sent.

View of the response object received for the web resource.

Trait Implementations

A COM compatible V-Table

The interface that this interface inherits from

The associated id for this interface

Check whether a given IID is in the inheritance hierarchy of this interface

Get the vtable for a particular COM interface

Implementations on Foreign Types

Implementors