9 implementations of Invoke
mscorlib (9)
system\io\stream.cs (1)
677
void ITaskCompletionAction.
Invoke
(Task completingTask)
system\threading\Tasks\Task.cs (5)
3297
public void
Invoke
(Task completingTask) { Set(); }
5233
public void
Invoke
(Task completingTask)
6123
public void
Invoke
(Task completedTask)
6367
public void
Invoke
(Task ignored)
7178
public void
Invoke
(Task completingTask)
system\threading\Tasks\TaskFactory.cs (3)
1654
public void
Invoke
(Task completingTask)
1732
public void
Invoke
(Task completingTask)
2434
public void
Invoke
(Task completingTask)
5 references to Invoke
mscorlib (5)
system\threading\Tasks\Task.cs (5)
3627
singleTaskCompletionAction.
Invoke
(this);
3712
action.
Invoke
(this);
4720
action.
Invoke
(this); // run the action directly if we failed to queue the continuation (i.e., the task completed)
6637
return new Delegate[] { new Action<Task>(singleCompletionAction.
Invoke
) };
6694
m_action.
Invoke
(m_completingTask);