10 references to IsWaitNotificationEnabled
mscorlib (10)
system\threading\Tasks\Task.cs (8)
885if (IsWaitNotificationEnabled && ShouldNotifyDebuggerOfWaitCompletion) 902task.IsWaitNotificationEnabled && 937bool isWaitNotificationEnabled = IsWaitNotificationEnabled; 958Contract.Assert(IsWaitNotificationEnabled, "Should only be called if the wait completion bit is set."); 5102if (task.IsWaitNotificationEnabled) AddToList(task, ref notificationTasks, initSize: 1); 5121if (task.IsWaitNotificationEnabled) AddToList(task, ref notificationTasks, initSize: 1); 6156if (task.IsWaitNotificationEnabled) this.SetNotificationForWaitCompletion(enabled: true); 6406if (task.IsWaitNotificationEnabled) this.SetNotificationForWaitCompletion(enabled: true);
system\threading\Tasks\TaskFactory.cs (2)
1659if (completingTask.IsWaitNotificationEnabled) this.SetNotificationForWaitCompletion(enabled: true); 1737if (completingTask.IsWaitNotificationEnabled) this.SetNotificationForWaitCompletion(enabled: true);