Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 1.64 KB

File metadata and controls

44 lines (32 loc) · 1.64 KB
-api-id -api-type
M:Windows.UI.Xaml.Controls.WebView.NavigateWithHttpRequestMessage(Windows.Web.Http.HttpRequestMessage)
winrt method

Windows.UI.Xaml.Controls.WebView.NavigateWithHttpRequestMessage

-description

Navigates the WebView to a URI with a POST request and HTTP headers.

-parameters

-param requestMessage

The details of the HTTP request.

-remarks

This method supports only HttpMethod.Post and HttpMethod.Get for the HttpRequestMessage.Method property value.

Warning

If you add additional headers to this request, such as authentication credentials, remember that those headers will also be included with any subsequent child requests. Use caution to prevent accidental disclosure of confidential or personal information.

If the app possesses the enterpriseCloudSSO capability, then web pages hosted inside the WebView control can use single sign on with Azure Active Directory (AAD) resources.

-examples

This example shows how to create an HTTP request and use it with this method.

HttpRequestMessage httpRequestMessage = new HttpRequestMessage(
    HttpMethod.Post, new Uri("http://www.contoso.com"));
httpRequestMessage.Content = new HttpStringContent("hello, world");
httpRequestMessage.Headers.Append("X-My-Client","true");

myWebView.NavigateWithHttpRequestMessage(httpRequestMessage);

-see-also

-capabilities

enterpriseCloudSSO