2 writes to CurrentNotification
System.Web (2)
HttpApplication.cs (1)
4204context.CurrentNotification = (RequestNotification)currentNotification;
HttpRuntime.cs (1)
1447context.CurrentNotification = (RequestNotification) currentNotification;
11 references to CurrentNotification
System.Web (11)
Abstractions\HttpContextWrapper.cs (1)
95return _context.CurrentNotification;
HttpApplication.cs (6)
591eventCount = CurrentModuleContainer.GetEventCount(Context.CurrentNotification, Context.IsPostNotification) - 1; 3697if (HttpRuntime.UseIntegratedPipeline && (_application.Context.CurrentNotification == RequestNotification.UpdateRequestCache)) { 4171&& context.CurrentNotification != RequestNotification.LogRequest 4172&& context.CurrentNotification != RequestNotification.EndRequest; 4206currentModuleLastEventIndex = _application.CurrentModuleContainer.GetEventCount(context.CurrentNotification, context.IsPostNotification) - 1; 4211IExecutionStep step = _application.CurrentModuleContainer.GetNextEvent(context.CurrentNotification, context.IsPostNotification,
HttpContext.cs (2)
188if (CurrentNotification <= RequestNotification.BeginRequest) { 329if (CurrentNotification > RequestNotification.ExecuteRequestHandler) {
HttpRuntime.cs (2)
1542&& (context.CurrentNotification == RequestNotification.LogRequest 1543|| context.CurrentNotification == RequestNotification.EndRequest)) {