1 write to _notificationContext
System.Web (1)
HttpContext.cs (1)
1967set { _notificationContext = value; }
31 references to _notificationContext
System.Web (31)
HttpContext.cs (31)
882if (_notificationContext.CurrentNotification >= RequestNotification.MapRequestHandler) { 1091if (_notificationContext != null && CurrentModuleIndex == -1) { 1207if (_isIntegratedPipeline && _notificationContext != null) { 1209_notificationContext.Error = errorInfo; 1225if (_isIntegratedPipeline && _notificationContext != null) { 1227_notificationContext.Error = null; 1260&& _notificationContext.CurrentNotification == RequestNotification.AuthenticateRequest) { 1288if (_notificationContext != null && _notificationContext.CurrentNotification >= RequestNotification.AcquireRequestState) { 1966get { return _notificationContext; } 1978return _notificationContext.CurrentNotification; 1985_notificationContext.CurrentNotification = value; 1990get { return (_notificationContext.CurrentNotificationFlags & FLAG_CHANGE_IN_SERVER_VARIABLES) == FLAG_CHANGE_IN_SERVER_VARIABLES; } 1994get { return (_notificationContext.CurrentNotificationFlags & FLAG_CHANGE_IN_REQUEST_HEADERS) == FLAG_CHANGE_IN_REQUEST_HEADERS; } 1998get { return (_notificationContext.CurrentNotificationFlags & FLAG_CHANGE_IN_RESPONSE_HEADERS) == FLAG_CHANGE_IN_RESPONSE_HEADERS; } 2002get { return (_notificationContext.CurrentNotificationFlags & FLAG_CHANGE_IN_RESPONSE_STATUS) == FLAG_CHANGE_IN_RESPONSE_STATUS; } 2006get { return (_notificationContext.CurrentNotificationFlags & FLAG_CHANGE_IN_USER_OBJECT) == FLAG_CHANGE_IN_USER_OBJECT; } 2014get { return (_notificationContext.CurrentNotificationFlags & FLAG_SEND_RESPONSE_HEADERS) == FLAG_SEND_RESPONSE_HEADERS; } 2038return (((_notificationContext.CurrentNotification == RequestNotification.AuthenticateRequest && _notificationContext.IsPostNotification) 2039|| _notificationContext.CurrentNotification > RequestNotification.AuthenticateRequest) 2040&& _notificationContext.CurrentNotification != RequestNotification.SendResponse); 2045get { return (_notificationContext.CurrentNotificationFlags & FLAG_RESPONSE_HEADERS_SENT) == FLAG_RESPONSE_HEADERS_SENT; } 2059return _notificationContext.CurrentNotificationFlags; 2062_notificationContext.CurrentNotificationFlags = value; 2070return _notificationContext.CurrentModuleIndex; 2073_notificationContext.CurrentModuleIndex = value; 2089return _notificationContext.CurrentModuleEventIndex; 2092_notificationContext.CurrentModuleEventIndex = value; 2110return _notificationContext.IsPostNotification; 2116_notificationContext.IsPostNotification = value;