Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ InnerSendAsync() [2/2]

static Task< HttpResponseMessage > System.Net.Http.AuthenticationHelper.InnerSendAsync ( HttpRequestMessage request,
bool async,
bool isProxyAuth,
HttpConnectionPool pool,
HttpConnection connection,
CancellationToken cancellationToken )
inlinestaticprivate

Definition at line 608 of file AuthenticationHelper.cs.

609 {
610 if (!isProxyAuth)
611 {
612 return pool.SendWithNtProxyAuthAsync(connection, request, async, cancellationToken);
613 }
614 return connection.SendAsyncCore(request, async, cancellationToken);
615 }

References System.cancellationToken, and System.Net.Http.HttpConnection.SendAsyncCore().