pub trait ICoreWebView2Environment8_Impl: Sized + ICoreWebView2Environment7_Impl {
    // Required methods
    fn add_ProcessInfosChanged(
        &self,
        eventhandler: Option<&ICoreWebView2ProcessInfosChangedEventHandler>,
        token: *mut EventRegistrationToken,
    ) -> Result<(), Error>;
    fn remove_ProcessInfosChanged(
        &self,
        token: &EventRegistrationToken,
    ) -> Result<(), Error>;
    fn GetProcessInfos(
        &self,
    ) -> Result<ICoreWebView2ProcessInfoCollection, Error>;
}

Required Methods§

source

fn add_ProcessInfosChanged( &self, eventhandler: Option<&ICoreWebView2ProcessInfosChangedEventHandler>, token: *mut EventRegistrationToken, ) -> Result<(), Error>

source

fn remove_ProcessInfosChanged( &self, token: &EventRegistrationToken, ) -> Result<(), Error>

source

fn GetProcessInfos(&self) -> Result<ICoreWebView2ProcessInfoCollection, Error>

Object Safety§

This trait is not object safe.

Implementors§