18 references to AuthenticateRequest
System.Web (18)
HttpApplication.cs (12)
805
add { AddSyncEventHookup(EventAuthenticateRequest, value, RequestNotification.
AuthenticateRequest
); }
806
remove { RemoveSyncEventHookup(EventAuthenticateRequest, value, RequestNotification.
AuthenticateRequest
); }
811
add { AddSyncEventHookup(EventDefaultAuthentication, value, RequestNotification.
AuthenticateRequest
); }
812
remove { RemoveSyncEventHookup(EventDefaultAuthentication, value, RequestNotification.
AuthenticateRequest
); }
818
add { AddSyncEventHookup(EventPostAuthenticateRequest, value, RequestNotification.
AuthenticateRequest
, true); }
819
remove { RemoveSyncEventHookup(EventPostAuthenticateRequest, value, RequestNotification.
AuthenticateRequest
, true); }
1012
RequestNotification.
AuthenticateRequest
, false, this);
1021
RequestNotification.
AuthenticateRequest
, true, this);
1841
eventMask["AuthenticateRequest"] = RequestNotification.
AuthenticateRequest
;
1842
eventMask["PostAuthenticateRequest"] = RequestNotification.
AuthenticateRequest
;
2507
requestNotifications |= RequestNotification.
AuthenticateRequest
;
2511
postRequestNotifications |= RequestNotification.
AuthenticateRequest
;
HttpContext.cs (3)
1260
&& _notificationContext.CurrentNotification == RequestNotification.
AuthenticateRequest
) {
2038
return (((_notificationContext.CurrentNotification == RequestNotification.
AuthenticateRequest
&& _notificationContext.IsPostNotification)
2039
|| _notificationContext.CurrentNotification > RequestNotification.
AuthenticateRequest
)
HttpRequest.cs (2)
2537
((_context.NotificationContext.CurrentNotification == RequestNotification.
AuthenticateRequest
&& !_context.NotificationContext.IsPostNotification)
2538
|| (_context.NotificationContext.CurrentNotification < RequestNotification.
AuthenticateRequest
))) {
PipelineModuleStepContainer.cs (1)
205
case RequestNotification.
AuthenticateRequest
: