5 writes to Next
System.Private.CoreLib (5)
src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (5)
250prevContinuation.Next = newContinuation; 260prevContinuation.Next = newContinuation; 269prevContinuation.Next = newContinuation; 371sentinelContinuation.Next = null; 529newContinuation.Next = nextContinuation;
8 references to Next
System.Private.CoreLib (8)
src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (8)
370Continuation headContinuation = sentinelContinuation.Next!; 392nc = nc.Next; 428Continuation nextUserContinuation = headContinuation.Next!; 429while ((nextUserContinuation.Flags & continueFlags) == 0 && nextUserContinuation.Next != null) 431nextUserContinuation = nextUserContinuation.Next; 465nextCont = nextCont.Next; 504Continuation? nextContinuation = curContinuation.Next; 636continuation = continuation.Next;