interface ICoreWebView2WebResourceRequest
Note
This reference is no longer being maintained. For the latest API reference, see WebView2 API Reference.
interface ICoreWebView2WebResourceRequest
: public IUnknown
An HTTP request used with the WebResourceRequested event.
Summary
Members | Descriptions |
---|---|
get_Content | The HTTP request message body as stream. |
get_Headers | The mutable HTTP request headers. |
get_Method | The HTTP request method. |
get_Uri | The request URI. |
put_Content | Set the Content property. |
put_Method | Set the Method property. |
put_Uri | Set the Uri property. |
Members
get_Content
The HTTP request message body as stream.
public HRESULT get_Content(IStream ** content)
POST data would be here. If a stream is set, which will override the message body, the stream must have all the content data available by the time this response's WebResourceRequested event deferral is completed. Stream should be agile or be created from a background STA to prevent performance impact to the UI thread. Null means no content data. IStream semantics apply (return S_OK to Read calls until all data is exhausted)
get_Headers
The mutable HTTP request headers.
public HRESULT get_Headers(ICoreWebView2HttpRequestHeaders ** headers)
get_Method
The HTTP request method.
public HRESULT get_Method(LPWSTR * method)
get_Uri
The request URI.
public HRESULT get_Uri(LPWSTR * uri)
put_Content
Set the Content property.
public HRESULT put_Content(IStream * content)
put_Method
Set the Method property.
public HRESULT put_Method(LPCWSTR method)
put_Uri
Set the Uri property.
public HRESULT put_Uri(LPCWSTR uri)