3 implementations of MoveNext
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\AsyncStateMachineDispatcher.cs (1)
286
public unsafe void
MoveNext
()
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\AsyncTaskMethodBuilderT.cs (1)
486
public void
MoveNext
() => MoveNext(threadPoolThread: null);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\PoolingAsyncValueTaskMethodBuilderT.cs (1)
431
public void
MoveNext
()
6 references to MoveNext
System.Private.CoreLib (6)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\AsyncStateMachineDispatcher.cs (1)
315
inner.
MoveNext
();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\YieldAwaitable.cs (2)
141
syncCtx.Post(static s => ((IAsyncStateMachineBox)s!).
MoveNext
(), box);
152
Task.Factory.StartNew(static s => ((IAsyncStateMachineBox)s!).
MoveNext
(), box, default, TaskCreationOptions.PreferFairness, scheduler);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\TaskContinuation.cs (1)
816
box.
MoveNext
();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Threading\ThreadPoolWorkQueue.cs (2)
1355
/// <summary>Shim used to invoke <see cref="IAsyncStateMachineBox.
MoveNext
"/> of the supplied <see cref="IAsyncStateMachineBox"/>.</summary>
1360
box.
MoveNext
();