Trait webview2_sys::ICoreWebView2StateChangedEventHandler[][src]

pub trait ICoreWebView2StateChangedEventHandler: IUnknown {
    unsafe fn invoke(
        &self,
        sender: *mut *mut ICoreWebView2DownloadOperationVTable,
        args: *mut *mut IUnknownVTable
    ) -> HRESULT; }
Expand description

Implements the interface to receive StateChanged event. Use the ICoreWebView2DownloadOperation.State property to get the current state, which can be in progress, interrupted, or completed. Use the ICoreWebView2DownloadOperation.InterruptReason property to get the interrupt reason if the download is interrupted.

Required methods

Provides the event args for the corresponding event. No event args exist and the args parameter is set to null.

Trait Implementations

A COM compatible V-Table

The interface that this interface inherits from

The associated id for this interface

Check whether a given IID is in the inheritance hierarchy of this interface

Get the vtable for a particular COM interface

Implementations on Foreign Types

Implementors