13 implementations of Invoke
System.Private.CoreLib (13)
src\libraries\System.Private.CoreLib\src\System\IO\Stream.cs (1)
697
void ITaskCompletionAction.
Invoke
(Task completingTask)
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\Task.cs (8)
2995
void ITaskCompletionAction.
Invoke
(Task completingTask)
3123
public void
Invoke
(Task completingTask) { Set(); }
5203
public void
Invoke
(Task completingTask)
6163
public void
Invoke
(Task? completedTask)
6494
public void
Invoke
(Task ignored)
6729
public void
Invoke
(Task completingTask)
6999
void ITaskCompletionAction.
Invoke
(Task completingTask)
7496
public void
Invoke
(Task completingTask)
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\TaskFactory.cs (3)
1565
public void
Invoke
(Task completingTask)
1635
public void
Invoke
(Task completingTask)
2290
public void
Invoke
(Task completingTask)
src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (1)
329
void ITaskCompletionAction.
Invoke
(Task completingTask)
5 references to Invoke
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\ValueTaskAwaiter.cs (1)
191
/// <summary>Invoked to set <see cref="ITaskCompletionAction.
Invoke
"/> of the <paramref name="box"/> as the awaiter's continuation.</summary>
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\Task.cs (4)
3692
completionAction.
Invoke
(this);
4615
action.
Invoke
(this); // run the action directly if we failed to queue the continuation (i.e., the task completed)
7169
return [new Action<Task>(singleCompletionAction.
Invoke
)];
7217
m_action.
Invoke
(m_completingTask);