2 writes to _requestRejectedException
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http\HttpProtocol.cs (2)
369
_requestRejectedException
= null;
1431
_requestRejectedException
= ex;
10 references to _requestRejectedException
Microsoft.AspNetCore.Server.Kestrel.Core (10)
Internal\Http\Http1Connection.cs (2)
1059
&& (
_requestRejectedException
is not BadHttpRequestException kestrelEx
1083
var reason = (
_requestRejectedException
as BadHttpRequestException)?.Reason;
Internal\Http\HttpProtocol.cs (7)
630
if (
_requestRejectedException
!= null)
760
if (
_requestRejectedException
== null)
793
if (!_connectionAborted &&
_requestRejectedException
== null && !messageBody.IsEmpty)
1040
Debug.Assert(
_requestRejectedException
!= null);
1060
if (
_requestRejectedException
!= null || _applicationException != null)
1072
if (
_requestRejectedException
!= null)
1074
SetErrorResponseException(
_requestRejectedException
);
Internal\Http\HttpProtocol.FeatureCollection.cs (1)
246
get =>
_requestRejectedException
;