Trait webview2_sys::ICoreWebView2NavigationCompletedEventArgs[][src]

pub trait ICoreWebView2NavigationCompletedEventArgs: IUnknown {
    unsafe fn get_is_success(&self, is_success: *mut BOOL) -> HRESULT;
unsafe fn get_web_error_status(
        &self,
        web_error_status: *mut WebErrorStatus
    ) -> HRESULT;
unsafe fn get_navigation_id(&self, navigation_id: *mut u64) -> HRESULT; }
Expand description

Event args for the NavigationCompleted event.

Required methods

TRUE when the navigation is successful. FALSE for a navigation that ended up in an error page (failures due to no network, DNS lookup failure, HTTP server responds with 4xx), but may also be FALSE for additional scenarios such as window.stop() run on navigated page.

The error code if the navigation failed.

The ID of the navigation.

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