1 instantiation of RuntimeAsyncTask
System.Private.CoreLib (1)
src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (1)
615RuntimeAsyncTask result = new();
12 references to RuntimeAsyncTask
System.Private.CoreLib (12)
src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (12)
335RuntimeAsyncTaskCore.DispatchContinuations<RuntimeAsyncTask, Ops>(this); 340RuntimeAsyncTaskCore.HandleSuspended<RuntimeAsyncTask, Ops>(this); 352Debug.Assert(state is RuntimeAsyncTask); 353((RuntimeAsyncTask)state).MoveNext(); 356private struct Ops : IRuntimeAsyncTaskOps<RuntimeAsyncTask> 358public static Action GetContinuationAction(RuntimeAsyncTask task) => (Action)task.m_action!; 359public static void MoveNext(RuntimeAsyncTask task) => task.MoveNext(); 360public static Continuation GetContinuationState(RuntimeAsyncTask task) => (Continuation)task.m_stateObject!; 361public static void SetContinuationState(RuntimeAsyncTask task, Continuation value) 366public static bool SetCompleted(RuntimeAsyncTask task, Continuation continuation) 371public static void PostToSyncContext(RuntimeAsyncTask task, SynchronizationContext syncContext) 615RuntimeAsyncTask result = new();