Trait webview2_sys::ICoreWebView2NavigationStartingEventArgs[][src]

pub trait ICoreWebView2NavigationStartingEventArgs: IUnknown {
    unsafe fn get_uri(&self, uri: *mut LPWSTR) -> HRESULT;
unsafe fn get_is_user_initiated(
        &self,
        is_user_initiated: *mut BOOL
    ) -> HRESULT;
unsafe fn get_is_redirected(&self, is_redirected: *mut BOOL) -> HRESULT;
unsafe fn get_request_headers(
        &self,
        request_headers: *mut *mut *mut ICoreWebView2HttpRequestHeadersVTable
    ) -> HRESULT;
unsafe fn get_cancel(&self, cancel: *mut BOOL) -> HRESULT;
unsafe fn put_cancel(&self, cancel: BOOL) -> HRESULT;
unsafe fn get_navigation_id(&self, navigation_id: *mut u64) -> HRESULT; }

Event args for the NavigationStarting event.

Required methods

unsafe fn get_uri(&self, uri: *mut LPWSTR) -> HRESULT[src]

The uri of the requested navigation.

unsafe fn get_is_user_initiated(&self, is_user_initiated: *mut BOOL) -> HRESULT[src]

TRUE when the navigation was initiated through a user gesture as opposed to programmatic navigation by page script. Navigations initiated via WebView2 APIs are considered as user initiated.

unsafe fn get_is_redirected(&self, is_redirected: *mut BOOL) -> HRESULT[src]

TRUE when the navigation is redirected.

unsafe fn get_request_headers(
    &self,
    request_headers: *mut *mut *mut ICoreWebView2HttpRequestHeadersVTable
) -> HRESULT
[src]

The HTTP request headers for the navigation.

> [!NOTE] You are not able to modify the HTTP request headers in a NavigationStarting event.

unsafe fn get_cancel(&self, cancel: *mut BOOL) -> HRESULT[src]

The host may set this flag to cancel the navigation. If set, the navigation is not longer present and the content of the current page is intact. For performance reasons, GET HTTP requests may happen, while the host is responding. You may set cookies and use part of a request for the navigation. Cancellation for navigation to about:blank or frame navigation to srcdoc is not supported. Such attempts are ignored.

unsafe fn put_cancel(&self, cancel: BOOL) -> HRESULT[src]

Sets the Cancel property.

unsafe fn get_navigation_id(&self, navigation_id: *mut u64) -> HRESULT[src]

The ID of the navigation.

Loading content...

Trait Implementations

impl ComInterface for dyn ICoreWebView2NavigationStartingEventArgs[src]

type VTable = ICoreWebView2NavigationStartingEventArgsVTable

A COM compatible V-Table

type Super = dyn IUnknown

The interface that this interface inherits from

impl<C: ICoreWebView2NavigationStartingEventArgs> ProductionComInterface<C> for dyn ICoreWebView2NavigationStartingEventArgs[src]

Implementations on Foreign Types

impl<T: ICoreWebView2NavigationStartingEventArgs + ComInterface + ?Sized> ICoreWebView2NavigationStartingEventArgs for ComRc<T>[src]

impl<T: ICoreWebView2NavigationStartingEventArgs + ComInterface + ?Sized> ICoreWebView2NavigationStartingEventArgs for ComPtr<T>[src]

Loading content...

Implementors

Loading content...