3 writes to NotificationContext
System.Web (3)
Hosting\IPipelineRuntime.cs (2)
574context.NotificationContext = new NotificationContext(flags /*CurrentNotificationFlags*/, 592context.NotificationContext = savedNotificationContext;
HttpRuntime.cs (1)
2080context.NotificationContext = null;
33 references to NotificationContext
System.Web (33)
Hosting\IPipelineRuntime.cs (1)
563NotificationContext savedNotificationContext = context.NotificationContext;
HttpApplication.cs (15)
590isReentry = Context.NotificationContext.IsReEntry; 603var nc = Context.NotificationContext; 609if (object.ReferenceEquals(nc, Context.NotificationContext)) { 669return (_context.NotificationContext != null) ? _context.NotificationContext.AsyncResult : null; 677_context.NotificationContext.AsyncResult = value; 2763context.NotificationContext.AsyncResult = result; 3793if (context != null && context.NotificationContext != null) { 3794context.NotificationContext.RequestCompleted = true; 4165context.NotificationContext.PendingAsyncCompletion = true; 4170bool needToFinishRequest = (context.NotificationContext.Error != null || context.NotificationContext.RequestCompleted) 4180if (context.NotificationContext.PendingAsyncCompletion) { 4182context.NotificationContext.PendingAsyncCompletion = false; 4237context.NotificationContext.PendingAsyncCompletion = true;
HttpRequest.cs (7)
2536if (_wr is IIS7WorkerRequest && _context.NotificationContext != null && 2537((_context.NotificationContext.CurrentNotification == RequestNotification.AuthenticateRequest && !_context.NotificationContext.IsPostNotification) 2538|| (_context.NotificationContext.CurrentNotification < RequestNotification.AuthenticateRequest))) { 2599(_context.NotificationContext != null) && 2600(_context.NotificationContext.CurrentNotification == RequestNotification.LogRequest || 2601_context.NotificationContext.CurrentNotification == RequestNotification.EndRequest)) {
HttpRuntime.cs (1)
1533if (context.NotificationContext.RequestCompleted) {
State\SessionStateModule.cs (1)
1409&& (context.NotificationContext.CurrentNotification == RequestNotification.ReleaseRequestState)
Util\AppVerifier.cs (8)
205if (context.NotificationContext != null) { 206currentNotification = context.NotificationContext.CurrentNotification; 207isPostNotification = context.NotificationContext.IsPostNotification; 501var notificationContext = (currentHttpContext != null) ? currentHttpContext.NotificationContext : null; 552NotificationContext originalNotificationContext = context.NotificationContext; 574assert(context.NotificationContext != null && !context.NotificationContext.PendingAsyncCompletion, 579assert(context.NotificationContext == originalNotificationContext,