4 writes to _applicationException
Microsoft.AspNetCore.Server.Kestrel.Core (4)
Internal\Http\HttpProtocol.cs (4)
350
_applicationException
= null;
1452
_applicationException
= ex;
1456
_applicationException
= new AggregateException(_applicationException, ex).Flatten();
1460
_applicationException
= new AggregateException(_applicationException, ex);
9 references to _applicationException
Microsoft.AspNetCore.Server.Kestrel.Core (9)
Internal\Http\HttpProtocol.cs (9)
687
if (!HasResponseStarted &&
_applicationException
== null && _onStarting?.Count > 0)
773
application.DisposeContext(context,
_applicationException
);
1013
if (
_applicationException
!= null)
1043
if (_requestRejectedException != null ||
_applicationException
!= null)
1395
throw new ObjectDisposedException(CoreStrings.UnhandledApplicationException,
_applicationException
);
1450
if (
_applicationException
== null)
1454
else if (
_applicationException
is AggregateException)
1456
_applicationException = new AggregateException(
_applicationException
, ex).Flatten();
1460
_applicationException = new AggregateException(
_applicationException
, ex);