2 instantiations of RuntimeAsyncTask
System.Private.CoreLib (2)
src\runtime\src\coreclr\System.Private.CoreLib\src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (2)
1324RuntimeAsyncTask<T?> result = new(); 1331RuntimeAsyncTask<VoidTaskResult> result = new();
7 references to RuntimeAsyncTask
System.Private.CoreLib (7)
src\runtime\src\coreclr\System.Private.CoreLib\src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (6)
1269Debug.Assert(state is RuntimeAsyncTask<T>); 1270((RuntimeAsyncTask<T>)state).DispatchContinuations(); 1274private static void InstrumentedFinalizeRuntimeAsyncTask<T>(RuntimeAsyncTask<T> task, ref RuntimeAsyncAwaitState state, AsyncInstrumentation.Flags flags) 1298private static void FinalizeRuntimeAsyncTask<T>(ref RuntimeAsyncAwaitState state, RuntimeAsyncTask<T> task) 1324RuntimeAsyncTask<T?> result = new(); 1331RuntimeAsyncTask<VoidTaskResult> result = new();
src\runtime\src\coreclr\System.Private.CoreLib\src\System\Runtime\CompilerServices\AsyncHelpers.RuntimeAsyncYielder.cs (1)
29continuationTarget.GetType().HasSameMetadataDefinitionAs(typeof(RuntimeAsyncTask<>)));