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)
441if (_applicationException != null) 518throw new ObjectDisposedException(CoreStrings.UnhandledApplicationException, _applicationException); 523if (_requestRejectedException != null || _applicationException != null) 769if (_applicationException == null) 773else if (_applicationException is AggregateException) 775_applicationException = new AggregateException(_applicationException, ex).Flatten(); 779_applicationException = new AggregateException(_applicationException, ex);
Core\IISHttpContextOfT.cs (2)
66if (!HasResponseStarted && _applicationException == null && _onStarting != null) 133_application.DisposeContext(context, _applicationException);