3 writes to _applicationException
Microsoft.AspNetCore.Server.IIS (3)
Core\IISHttpContext.cs (3)
824_applicationException = ex; 828_applicationException = new AggregateException(_applicationException, ex).Flatten(); 832_applicationException = new AggregateException(_applicationException, ex);
9 references to _applicationException
Microsoft.AspNetCore.Server.IIS (9)
Core\IISHttpContext.cs (7)
494if (_applicationException != null) 571throw new ObjectDisposedException(CoreStrings.UnhandledApplicationException, _applicationException); 576if (_requestRejectedException != null || _applicationException != null) 822if (_applicationException == null) 826else if (_applicationException is AggregateException) 828_applicationException = new AggregateException(_applicationException, ex).Flatten(); 832_applicationException = new AggregateException(_applicationException, ex);
Core\IISHttpContextOfT.cs (2)
68if (!HasResponseStarted && _applicationException == null && _onStarting != null) 144_application.DisposeContext(context, _applicationException);