5 writes to Next
System.Private.CoreLib (5)
src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (5)
239prevContinuation.Next = newContinuation; 249prevContinuation.Next = newContinuation; 258prevContinuation.Next = newContinuation; 361sentinelContinuation.Next = null; 463newContinuation.Next = nextContinuation;
6 references to Next
System.Private.CoreLib (6)
src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (6)
360Continuation headContinuation = sentinelContinuation.Next!; 406Continuation nextUserContinuation = headContinuation.Next!; 407while ((nextUserContinuation.Flags & continueFlags) == 0 && nextUserContinuation.Next != null) 409nextUserContinuation = nextUserContinuation.Next; 455Continuation? nextContinuation = curContinuation.Next; 530continuation = continuation.Next;