HttpClientHandler::SendAsync Method
Sends an HTTP request with a cancellation token as an asynchronous operation.
Namespace: System.Net.Http
Assembly: System.Net.Http (in System.Net.Http.dll)
protected public: virtual Task<HttpResponseMessage^>^ SendAsync( HttpRequestMessage^ request, CancellationToken cancellationToken ) override
Parameters
- request
- Type: System.Net.Http::HttpRequestMessage
The HTTP request message to send.
- cancellationToken
- Type: System.Threading::CancellationToken
A cancellation token that can be used by other objects or threads to receive notice of cancellation.
Return Value
Type: System.Threading.Tasks::Task<HttpResponseMessage>The task object representing the asynchronous operation.
Show: