Trait webview2_com::Microsoft::Web::WebView2::Win32::ICoreWebView2ServerCertificateErrorDetectedEventArgs_Impl
source · pub trait ICoreWebView2ServerCertificateErrorDetectedEventArgs_Impl: Sized {
// Required methods
fn ErrorStatus(
&self,
value: *mut COREWEBVIEW2_WEB_ERROR_STATUS,
) -> Result<(), Error>;
fn RequestUri(&self, value: *mut PWSTR) -> Result<(), Error>;
fn ServerCertificate(&self) -> Result<ICoreWebView2Certificate, Error>;
fn Action(
&self,
value: *mut COREWEBVIEW2_SERVER_CERTIFICATE_ERROR_ACTION,
) -> Result<(), Error>;
fn SetAction(
&self,
value: COREWEBVIEW2_SERVER_CERTIFICATE_ERROR_ACTION,
) -> Result<(), Error>;
fn GetDeferral(&self) -> Result<ICoreWebView2Deferral, Error>;
}
Required Methods§
fn ErrorStatus( &self, value: *mut COREWEBVIEW2_WEB_ERROR_STATUS, ) -> Result<(), Error>
fn RequestUri(&self, value: *mut PWSTR) -> Result<(), Error>
fn ServerCertificate(&self) -> Result<ICoreWebView2Certificate, Error>
fn Action( &self, value: *mut COREWEBVIEW2_SERVER_CERTIFICATE_ERROR_ACTION, ) -> Result<(), Error>
fn SetAction( &self, value: COREWEBVIEW2_SERVER_CERTIFICATE_ERROR_ACTION, ) -> Result<(), Error>
fn GetDeferral(&self) -> Result<ICoreWebView2Deferral, Error>
Object Safety§
This trait is not object safe.