ICoreWebView2HttpHeadersCollectionIterator

Undocumented in source.
version(Windows && inline_webview2_bindings && all)
interface ICoreWebView2HttpHeadersCollectionIterator : IUnknown {
static const
GUID iid;
}

Members

Functions

GetCurrentHeader
HRESULT GetCurrentHeader(LPWSTR* name, LPWSTR* value)

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.

MoveNext
HRESULT MoveNext(BOOL* hasNext)

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

get_HasCurrentHeader
HRESULT get_HasCurrentHeader(BOOL* hasCurrent)

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.

Suggestion Box / Bug Report