interface ICoreWebView2HttpResponseHeaders
interface ICoreWebView2HttpResponseHeaders
: public IUnknown
HTTP response headers.
Members | Descriptions |
---|---|
AppendHeader | Appends header line with name and value. |
Contains | Verifies that the headers contain entries that match the header name. |
GetHeader | Gets the first header value in the collection matching the name. |
GetHeaders | Gets the header values matching the name. |
GetIterator | Gets an iterator over the collection of entire response headers. |
Used to construct a WebResourceResponse
for the WebResourceRequested
event.
Product | Introduced |
---|---|
WebView2 Win32 | 0.9.430 |
WebView2 Win32 Prerelease | 0.9.488 |
Appends header line with name and value.
public HRESULT AppendHeader(LPCWSTR name, LPCWSTR value)
Verifies that the headers contain entries that match the header name.
public HRESULT Contains(LPCWSTR name, BOOL * contains)
Gets the first header value in the collection matching the name.
public HRESULT GetHeader(LPCWSTR name, LPWSTR * value)
Gets the header values matching the name.
public HRESULT GetHeaders(LPCWSTR name, ICoreWebView2HttpHeadersCollectionIterator ** iterator)
Gets an iterator over the collection of entire response headers.
public HRESULT GetIterator(ICoreWebView2HttpHeadersCollectionIterator ** iterator)