Trait webview2_com::Microsoft::Web::WebView2::Win32::ICoreWebView2NavigationStartingEventArgs_Impl
source · [−]pub trait ICoreWebView2NavigationStartingEventArgs_Impl {
fn Uri(&self, uri: *mut PWSTR) -> Result<(), Error>;
fn IsUserInitiated(&self, isuserinitiated: *mut BOOL) -> Result<(), Error>;
fn IsRedirected(&self, isredirected: *mut BOOL) -> Result<(), Error>;
fn RequestHeaders(&self) -> Result<ICoreWebView2HttpRequestHeaders, Error>;
fn Cancel(&self, cancel: *mut BOOL) -> Result<(), Error>;
fn SetCancel(&self, cancel: BOOL) -> Result<(), Error>;
fn NavigationId(&self, navigationid: *mut u64) -> Result<(), Error>;
}
Required Methods
source