Trait webview2_com::Microsoft::Web::WebView2::Win32::ICoreWebView2BasicAuthenticationRequestedEventArgs_Impl
source · [−]pub trait ICoreWebView2BasicAuthenticationRequestedEventArgs_Impl {
fn Uri(&self, value: *mut PWSTR) -> Result<(), Error>;
fn Challenge(&self, challenge: *mut PWSTR) -> Result<(), Error>;
fn Response(
&self
) -> Result<ICoreWebView2BasicAuthenticationResponse, Error>;
fn Cancel(&self, cancel: *mut BOOL) -> Result<(), Error>;
fn SetCancel(&self, cancel: BOOL) -> Result<(), Error>;
fn GetDeferral(&self) -> Result<ICoreWebView2Deferral, Error>;
}
Required Methods
source
fn Response(&self) -> Result<ICoreWebView2BasicAuthenticationResponse, Error>
source