4 writes to _applicationException
Microsoft.AspNetCore.Server.Kestrel.Core (4)
Internal\Http\HttpProtocol.cs (4)
368
_applicationException
= null;
1478
_applicationException
= ex;
1482
_applicationException
= new AggregateException(_applicationException, ex).Flatten();
1486
_applicationException
= new AggregateException(_applicationException, ex);
9 references to _applicationException
Microsoft.AspNetCore.Server.Kestrel.Core (9)
Internal\Http\HttpProtocol.cs (9)
704
if (!HasResponseStarted &&
_applicationException
== null && _onStarting?.Count > 0)
790
application.DisposeContext(context,
_applicationException
);
1030
if (
_applicationException
!= null)
1060
if (_requestRejectedException != null ||
_applicationException
!= null)
1421
throw new ObjectDisposedException(CoreStrings.UnhandledApplicationException,
_applicationException
);
1476
if (
_applicationException
== null)
1480
else if (
_applicationException
is AggregateException)
1482
_applicationException = new AggregateException(
_applicationException
, ex).Flatten();
1486
_applicationException = new AggregateException(
_applicationException
, ex);