Click or drag to resize

LoggingHandlerSendAsync Method

IT Hit WebDAV Classes Reference
Sends an HTTP request to the inner handler to send to the server as an asynchronous operation.

Namespace:  ITHit.WebDAV.Client.Impl
Assembly:  ITHit.WebDAV.Client (in ITHit.WebDAV.Client.dll) Version: 5.1.2712
Syntax
protected override Task<HttpResponseMessage> SendAsync(
	HttpRequestMessage request,
	CancellationToken cancellationToken
)

protected override Task<HttpResponseMessage> SendAsync(
	HttpRequestMessage request,
	CancellationToken cancellationToken
)

Parameters

request
Type: System.Net.HttpHttpRequestMessage
The HTTP request message to send to the server.
cancellationToken
Type: System.ThreadingCancellationToken
A cancellation token to cancel operation.

Return Value

Type: TaskHttpResponseMessage
The task object representing the asynchronous operation.
Exceptions
ExceptionCondition
ArgumentNullExceptionThe request was .
See Also