4 writes to _applicationException
Microsoft.AspNetCore.Server.Kestrel.Core (4)
Internal\Http\HttpProtocol.cs (4)
368
_applicationException
= null;
1480
_applicationException
= ex;
1484
_applicationException
= new AggregateException(_applicationException, ex).Flatten();
1488
_applicationException
= new AggregateException(_applicationException, ex);
9 references to _applicationException
Microsoft.AspNetCore.Server.Kestrel.Core (9)
Internal\Http\HttpProtocol.cs (9)
706
if (!HasResponseStarted &&
_applicationException
== null && _onStarting?.Count > 0)
792
application.DisposeContext(context,
_applicationException
);
1032
if (
_applicationException
!= null)
1062
if (_requestRejectedException != null ||
_applicationException
!= null)
1423
throw new ObjectDisposedException(CoreStrings.UnhandledApplicationException,
_applicationException
);
1478
if (
_applicationException
== null)
1482
else if (
_applicationException
is AggregateException)
1484
_applicationException = new AggregateException(
_applicationException
, ex).Flatten();
1488
_applicationException = new AggregateException(
_applicationException
, ex);