6 overrides of SendAsync
System.Net.Http (6)
System\Net\Http\DiagnosticsHandler.cs (1)
76
internal override ValueTask<HttpResponseMessage>
SendAsync
(HttpRequestMessage request, bool async, CancellationToken cancellationToken)
System\Net\Http\Metrics\MetricsHandler.cs (1)
36
internal override ValueTask<HttpResponseMessage>
SendAsync
(HttpRequestMessage request, bool async, CancellationToken cancellationToken)
System\Net\Http\SocketsHttpHandler\DecompressionHandler.cs (1)
52
internal override async ValueTask<HttpResponseMessage>
SendAsync
(HttpRequestMessage request, bool async, CancellationToken cancellationToken)
System\Net\Http\SocketsHttpHandler\HttpAuthenticatedConnectionHandler.cs (1)
18
internal override ValueTask<HttpResponseMessage>
SendAsync
(HttpRequestMessage request, bool async, CancellationToken cancellationToken)
System\Net\Http\SocketsHttpHandler\HttpConnectionHandler.cs (1)
18
internal override ValueTask<HttpResponseMessage>
SendAsync
(HttpRequestMessage request, bool async, CancellationToken cancellationToken)
System\Net\Http\SocketsHttpHandler\RedirectHandler.cs (1)
28
internal override async ValueTask<HttpResponseMessage>
SendAsync
(HttpRequestMessage request, bool async, CancellationToken cancellationToken)
5 references to SendAsync
System.Net.Http (5)
System\Net\Http\SocketsHttpHandler\DecompressionHandler.cs (1)
69
HttpResponseMessage response = await _innerHandler.
SendAsync
(request, async, cancellationToken).ConfigureAwait(false);
System\Net\Http\SocketsHttpHandler\HttpMessageHandlerStage.cs (2)
14
ValueTask<HttpResponseMessage> sendTask =
SendAsync
(request, async: false, cancellationToken);
21
SendAsync
(request, async: true, cancellationToken).AsTask();
System\Net\Http\SocketsHttpHandler\RedirectHandler.cs (2)
30
HttpResponseMessage response = await _initialInnerHandler.
SendAsync
(request, async, cancellationToken).ConfigureAwait(false);
85
response = await _redirectInnerHandler.
SendAsync
(request, async, cancellationToken).ConfigureAwait(false);