2 writes to _requestRejectedException
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http\HttpProtocol.cs (2)
369
_requestRejectedException
= null;
1442
_requestRejectedException
= ex;
10 references to _requestRejectedException
Microsoft.AspNetCore.Server.Kestrel.Core (10)
Internal\Http\Http1Connection.cs (2)
1144
&& (
_requestRejectedException
is not BadHttpRequestException kestrelEx
1168
var reason = (
_requestRejectedException
as BadHttpRequestException)?.Reason;
Internal\Http\HttpProtocol.cs (7)
630
if (
_requestRejectedException
!= null)
762
if (
_requestRejectedException
== null)
795
if (!_connectionAborted &&
_requestRejectedException
== null && !messageBody.IsEmpty)
1042
Debug.Assert(
_requestRejectedException
!= null);
1062
if (
_requestRejectedException
!= null || _applicationException != null)
1074
if (
_requestRejectedException
!= null)
1076
SetErrorResponseException(
_requestRejectedException
);
Internal\Http\HttpProtocol.FeatureCollection.cs (1)
246
get =>
_requestRejectedException
;