2 writes to CurrentNotificationFlags
System.Web (2)
HttpContext.cs (1)
2062
_notificationContext.
CurrentNotificationFlags
= value;
NotificationContext.cs (1)
11
CurrentNotificationFlags
= flags;
8 references to CurrentNotificationFlags
System.Web (8)
HttpContext.cs (8)
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; }
2045
get { return (_notificationContext.
CurrentNotificationFlags
& FLAG_RESPONSE_HEADERS_SENT) == FLAG_RESPONSE_HEADERS_SENT; }
2059
return _notificationContext.
CurrentNotificationFlags
;