7 references to FromAsyncImpl
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\TaskFactory.cs (4)
855return TaskFactory<VoidTaskResult>.FromAsyncImpl(asyncResult, null, endMethod, creationOptions, scheduler); 1156return TaskFactory<TResult>.FromAsyncImpl(asyncResult, endMethod, null, m_defaultCreationOptions, DefaultScheduler); 1184return TaskFactory<TResult>.FromAsyncImpl(asyncResult, endMethod, null, creationOptions, DefaultScheduler); 1216return TaskFactory<TResult>.FromAsyncImpl(asyncResult, endMethod, null, creationOptions, scheduler);
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\TaskFactory_T.cs (3)
563return FromAsyncImpl(asyncResult, endMethod, null, m_defaultCreationOptions, DefaultScheduler); 590return FromAsyncImpl(asyncResult, endMethod, null, creationOptions, DefaultScheduler); 624return FromAsyncImpl(asyncResult, endMethod, null, creationOptions, scheduler);