pub trait ICoreWebView2_4_Impl: ICoreWebView2_Impl + ICoreWebView2_2_Impl + ICoreWebView2_3_Impl {
    fn add_FrameCreated(
        &self,
        eventhandler: &Option<ICoreWebView2FrameCreatedEventHandler>,
        token: *mut EventRegistrationToken
    ) -> Result<(), Error>; fn remove_FrameCreated(
        &self,
        token: &EventRegistrationToken
    ) -> Result<(), Error>; fn add_DownloadStarting(
        &self,
        eventhandler: &Option<ICoreWebView2DownloadStartingEventHandler>,
        token: *mut EventRegistrationToken
    ) -> Result<(), Error>; fn remove_DownloadStarting(
        &self,
        token: &EventRegistrationToken
    ) -> Result<(), Error>; }

Required Methods

Implementors