pub trait ICoreWebView2_8_Impl: ICoreWebView2_Impl + ICoreWebView2_2_Impl + ICoreWebView2_3_Impl + ICoreWebView2_4_Impl + ICoreWebView2_5_Impl + ICoreWebView2_6_Impl + ICoreWebView2_7_Impl {
    fn add_IsMutedChanged(
        &self,
        eventhandler: &Option<ICoreWebView2IsMutedChangedEventHandler>,
        token: *mut EventRegistrationToken
    ) -> Result<(), Error>; fn remove_IsMutedChanged(
        &self,
        token: &EventRegistrationToken
    ) -> Result<(), Error>; fn IsMuted(&self, value: *mut BOOL) -> Result<(), Error>; fn SetIsMuted(&self, value: BOOL) -> Result<(), Error>; fn add_IsDocumentPlayingAudioChanged(
        &self,
        eventhandler: &Option<ICoreWebView2IsDocumentPlayingAudioChangedEventHandler>,
        token: *mut EventRegistrationToken
    ) -> Result<(), Error>; fn remove_IsDocumentPlayingAudioChanged(
        &self,
        token: &EventRegistrationToken
    ) -> Result<(), Error>; fn IsDocumentPlayingAudio(&self, value: *mut BOOL) -> Result<(), Error>; }

Required Methods

Implementors