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