CoreWebView2WebResourceResponseView Class

View of the HTTP representation for a web resource response. The properties of this object are not mutable. This response view is used with the CoreWebView2.WebResourceResponseReceived event.

Summary

Members Description
Headers Gets the HTTP response headers as received.
ReasonPhrase Gets the HTTP response reason phrase.
StatusCode Gets the HTTP response status code.
GetContentAsync Gets the response content stream asynchronously.

Properties

Headers

readonly CoreWebView2HttpResponseHeaders Headers

Gets the HTTP response headers as received.

ReasonPhrase

readonly string ReasonPhrase

Gets the HTTP response reason phrase.

StatusCode

readonly int StatusCode

Gets the HTTP response status code.

Methods

GetContentAsync

IAsyncOperation<IRandomAccessStream> GetContentAsync()

Gets the response content stream asynchronously. A null stream means no content was found. Note content (if any) for redirect responses is ignored. If this method is being called again before a first call has completed, it will complete at the same time all prior calls do. If this method is being called after a first call has completed, it will return immediately (asynchronously).

Referenced by