2 implementations of IThunkTaskOps
System.Private.CoreLib (2)
src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (2)
248private struct Ops : IThunkTaskOps<ThunkTask<T>> 320private struct Ops : IThunkTaskOps<ThunkTask>
3 references to IThunkTaskOps
System.Private.CoreLib (3)
src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (3)
344public static unsafe void MoveNext<T, TOps>(T task) where T : Task where TOps : IThunkTaskOps<T> 425public static void HandleSuspended<T, TOps>(T task) where T : Task where TOps : IThunkTaskOps<T> 469private static bool QueueContinuationFollowUpActionIfNecessary<T, TOps>(T task, Continuation continuation) where T : Task where TOps : IThunkTaskOps<T>