3 writes to _applicationException
Microsoft.AspNetCore.Server.IIS (3)
Core\IISHttpContext.cs (3)
771
_applicationException
= ex;
775
_applicationException
= new AggregateException(_applicationException, ex).Flatten();
779
_applicationException
= new AggregateException(_applicationException, ex);
9 references to _applicationException
Microsoft.AspNetCore.Server.IIS (9)
Core\IISHttpContext.cs (7)
441
if (
_applicationException
!= null)
518
throw new ObjectDisposedException(CoreStrings.UnhandledApplicationException,
_applicationException
);
523
if (_requestRejectedException != null ||
_applicationException
!= null)
769
if (
_applicationException
== null)
773
else if (
_applicationException
is AggregateException)
775
_applicationException = new AggregateException(
_applicationException
, ex).Flatten();
779
_applicationException = new AggregateException(
_applicationException
, ex);
Core\IISHttpContextOfT.cs (2)
66
if (!HasResponseStarted &&
_applicationException
== null && _onStarting != null)
133
_application.DisposeContext(context,
_applicationException
);