Trait webview2_sys::ICoreWebView2CookieList[][src]

pub trait ICoreWebView2CookieList: IUnknown {
    unsafe fn get_count(&self, count: *mut u32) -> HRESULT;
unsafe fn get_value_at_index(
        &self,
        index: u32,
        cookie: *mut *mut *mut ICoreWebView2CookieVTable
    ) -> HRESULT; }
Expand description

A list of cookie objects. See ICoreWebView2Cookie. \snippet ScenarioCookieManagement.cpp GetCookies

Required methods

The number of cookies contained in the ICoreWebView2CookieList.

Gets the cookie object at the given index.

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