pub trait ICoreWebView2ClientCertificateCollection: IUnknown {
// Required methods
unsafe fn get_count(&self, value: *mut u32) -> HRESULT;
unsafe fn get_value_at_index(
&self,
index: u32,
certificate: *mut *mut *mut ICoreWebView2ClientCertificateVTable,
) -> HRESULT;
}Expand description
A collection of client certificate object.
Required Methods§
Sourceunsafe fn get_count(&self, value: *mut u32) -> HRESULT
unsafe fn get_count(&self, value: *mut u32) -> HRESULT
The number of client certificates contained in the ICoreWebView2ClientCertificateCollection.
Sourceunsafe fn get_value_at_index(
&self,
index: u32,
certificate: *mut *mut *mut ICoreWebView2ClientCertificateVTable,
) -> HRESULT
unsafe fn get_value_at_index( &self, index: u32, certificate: *mut *mut *mut ICoreWebView2ClientCertificateVTable, ) -> HRESULT
Gets the certificate object at the given index.
Trait Implementations§
Source§impl ComInterface for dyn ICoreWebView2ClientCertificateCollection
impl ComInterface for dyn ICoreWebView2ClientCertificateCollection
Source§const IID: IID = IID_ICORE_WEB_VIEW2_CLIENT_CERTIFICATE_COLLECTION
const IID: IID = IID_ICORE_WEB_VIEW2_CLIENT_CERTIFICATE_COLLECTION
The associated id for this interface
Source§type VTable = ICoreWebView2ClientCertificateCollectionVTable
type VTable = ICoreWebView2ClientCertificateCollectionVTable
A COM compatible V-Table
Source§fn is_iid_in_inheritance_chain(riid: &GUID) -> bool
fn is_iid_in_inheritance_chain(riid: &GUID) -> bool
Check whether a given IID is in the inheritance hierarchy of this interface