Windows.Web.Http.HttpClient.SendRequestAsync
September 9, 2020 ยท View on GitHub
-description
Send an HTTP request with an HTTP completion option as an asynchronous operation. For programming guidance for the HttpClient class, and code examples, see the HttpClient conceptual topic.
-parameters
-param request
The HTTP request message to send.
-param completionOption
A value that indicates whether the HttpClient operation is considered completed when all of the response is read, or when just the headers are read.
-returns
The object representing the asynchronous operation.
-remarks
This operation will not block. The returned IAsyncOperationWithProgress (of HttpResponseMessage and HttpProgress) completes depending on the value of the completionOption parameter.
The HttpRequestMessage passed in the request parameter allows the SendRequestAsync method to set headers on the request message as well as on the HTTP content to be sent. In contrast, the PostAsync and PutAsync methods only allow setting a more limited set of HTTP content headers.
Below are the exceptions that this function throws.
E_ILLEGAL_METHOD_CALL
The request message was already sent by the HttpClient instance.
Exception handling
You must write code to handle exceptions when you call this method. Exceptions can result from parameter validation errors, name resolutions failures, and network errors. Exceptions from network errors (loss of connectivity, connection failures, and HTTP server failures, for example) can happen at any time. These errors result in exceptions being thrown. If not handled by your app, an exception can cause your entire app to be terminated by the runtime. For more information on how to handle exceptions, see Handling exceptions in network apps and How to: Map HRESULTs and Exceptions.
-examples
-see-also
HttpRequestMessage, PostAsync, SendRequestAsync(HttpRequestMessage), HttpClient