12 implementations of Invoke
System.Private.CoreLib (12)
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\Stream.cs (1)
698
void ITaskCompletionAction.
Invoke
(Task completingTask)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\Task.cs (8)
3071
void ITaskCompletionAction.
Invoke
(Task completingTask)
3199
public void
Invoke
(Task completingTask) { Set(); }
5303
public void
Invoke
(Task completingTask)
6264
public void
Invoke
(Task? completedTask)
6595
public void
Invoke
(Task ignored)
6830
public void
Invoke
(Task completingTask)
7100
void ITaskCompletionAction.
Invoke
(Task completingTask)
7599
public void
Invoke
(Task completingTask)
src\runtime\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)
5 references to Invoke
System.Private.CoreLib (5)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\ValueTaskAwaiter.cs (1)
207
/// <summary>Invoked to set <see cref="ITaskCompletionAction.
Invoke
"/> of the <paramref name="box"/> as the awaiter's continuation.</summary>
src\runtime\src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\Task.cs (4)
3792
completionAction.
Invoke
(this);
4715
action.
Invoke
(this); // run the action directly if we failed to queue the continuation (i.e., the task completed)
7272
return [new Action<Task>(singleCompletionAction.
Invoke
)];
7320
m_action.
Invoke
(m_completingTask);