3 writes to NotificationContext
System.Web (3)
Hosting\IPipelineRuntime.cs (2)
574
context.
NotificationContext
= new NotificationContext(flags /*CurrentNotificationFlags*/,
592
context.
NotificationContext
= savedNotificationContext;
HttpRuntime.cs (1)
2080
context.
NotificationContext
= null;
33 references to NotificationContext
System.Web (33)
Hosting\IPipelineRuntime.cs (1)
563
NotificationContext savedNotificationContext = context.
NotificationContext
;
HttpApplication.cs (15)
590
isReentry = Context.
NotificationContext
.IsReEntry;
603
var nc = Context.
NotificationContext
;
609
if (object.ReferenceEquals(nc, Context.
NotificationContext
)) {
669
return (_context.
NotificationContext
!= null) ? _context.
NotificationContext
.AsyncResult : null;
677
_context.
NotificationContext
.AsyncResult = value;
2763
context.
NotificationContext
.AsyncResult = result;
3793
if (context != null && context.
NotificationContext
!= null) {
3794
context.
NotificationContext
.RequestCompleted = true;
4165
context.
NotificationContext
.PendingAsyncCompletion = true;
4170
bool needToFinishRequest = (context.
NotificationContext
.Error != null || context.
NotificationContext
.RequestCompleted)
4180
if (context.
NotificationContext
.PendingAsyncCompletion) {
4182
context.
NotificationContext
.PendingAsyncCompletion = false;
4237
context.
NotificationContext
.PendingAsyncCompletion = true;
HttpRequest.cs (7)
2536
if (_wr is IIS7WorkerRequest && _context.
NotificationContext
!= null &&
2537
((_context.
NotificationContext
.CurrentNotification == RequestNotification.AuthenticateRequest && !_context.
NotificationContext
.IsPostNotification)
2538
|| (_context.
NotificationContext
.CurrentNotification < RequestNotification.AuthenticateRequest))) {
2599
(_context.
NotificationContext
!= null) &&
2600
(_context.
NotificationContext
.CurrentNotification == RequestNotification.LogRequest ||
2601
_context.
NotificationContext
.CurrentNotification == RequestNotification.EndRequest)) {
HttpRuntime.cs (1)
1533
if (context.
NotificationContext
.RequestCompleted) {
State\SessionStateModule.cs (1)
1409
&& (context.
NotificationContext
.CurrentNotification == RequestNotification.ReleaseRequestState)
Util\AppVerifier.cs (8)
205
if (context.
NotificationContext
!= null) {
206
currentNotification = context.
NotificationContext
.CurrentNotification;
207
isPostNotification = context.
NotificationContext
.IsPostNotification;
501
var notificationContext = (currentHttpContext != null) ? currentHttpContext.
NotificationContext
: null;
552
NotificationContext originalNotificationContext = context.
NotificationContext
;
574
assert(context.
NotificationContext
!= null && !context.
NotificationContext
.PendingAsyncCompletion,
579
assert(context.
NotificationContext
== originalNotificationContext,