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