Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge remote-tracking branch 'upstream/main' into streamline-http-usa…
…ge-mobile
  • Loading branch information
Steve Pfister committed Jul 14, 2021
commit 3a226f9fe03044bde06a5727c7aaae7def4b4ba5
Original file line number Diff line number Diff line change
Expand Up @@ -360,13 +360,8 @@ public SslProtocols SslProtocols
//[UnsupportedOSPlatform("ios")]
//[UnsupportedOSPlatform("tvos")]
//[UnsupportedOSPlatform("maccatalyst")]
protected internal override HttpResponseMessage Send(HttpRequestMessage request,
CancellationToken cancellationToken)
{
return DiagnosticsHandler.IsEnabled() && _diagnosticsHandler != null ?
_diagnosticsHandler.Send(request, cancellationToken) :
_underlyingHandler.Send(request, cancellationToken);
}
protected internal override HttpResponseMessage Send(HttpRequestMessage request, CancellationToken cancellationToken) =>
Handler.Send(request, cancellationToken);

protected internal override Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) =>
Handler.SendAsync(request, cancellationToken);
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.