Trait webview2_sys::ICoreWebView2HttpHeadersCollectionIterator[][src]

pub trait ICoreWebView2HttpHeadersCollectionIterator: IUnknown {
    unsafe fn get_current_header(
        &self,
        name: *mut LPWSTR,
        value: *mut LPWSTR
    ) -> HRESULT;
unsafe fn get_has_current_header(&self, has_current: *mut BOOL) -> HRESULT;
unsafe fn move_next(&self, has_next: *mut BOOL) -> HRESULT; }
Expand description

Iterator for a collection of HTTP headers. For more information, navigate to ICoreWebView2HttpRequestHeaders and ICoreWebView2HttpResponseHeaders.

\snippet ScenarioWebViewEventMonitor.cpp HttpRequestHeaderIterator

Required methods

Get the name and value of the current HTTP header of the iterator. If the previous MoveNext operation set the hasNext parameter to FALSE, this method fails.

TRUE when the iterator has not run out of headers. If the collection over which the iterator is iterating is empty or if the iterator has gone past the end of the collection then this is FALSE.

Move the iterator to the next HTTP header in the collection.

> [!NOTE]\n > If no more HTTP headers exist, the hasNext parameter is set to FALSE. After this occurs the GetCurrentHeader method fails.

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