5 writes to Next
System.Private.CoreLib (5)
src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (5)
258prevContinuation.Next = newContinuation; 269prevContinuation.Next = newContinuation; 279prevContinuation.Next = newContinuation; 381sentinelContinuation.Next = null; 539newContinuation.Next = nextContinuation;
8 references to Next
System.Private.CoreLib (8)
src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (8)
380Continuation headContinuation = sentinelContinuation.Next!; 402nc = nc.Next; 438Continuation nextUserContinuation = headContinuation.Next!; 439while ((nextUserContinuation.Flags & continueFlags) == 0 && nextUserContinuation.Next != null) 441nextUserContinuation = nextUserContinuation.Next; 475nextCont = nextCont.Next; 514Continuation? nextContinuation = curContinuation.Next; 646continuation = continuation.Next;