5 writes to Next
System.Private.CoreLib (5)
src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (5)
247prevContinuation.Next = newContinuation; 257prevContinuation.Next = newContinuation; 266prevContinuation.Next = newContinuation; 369sentinelContinuation.Next = null; 472newContinuation.Next = nextContinuation;
6 references to Next
System.Private.CoreLib (6)
src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (6)
368Continuation headContinuation = sentinelContinuation.Next!; 414Continuation nextUserContinuation = headContinuation.Next!; 415while ((nextUserContinuation.Flags & continueFlags) == 0 && nextUserContinuation.Next != null) 417nextUserContinuation = nextUserContinuation.Next; 464Continuation? nextContinuation = curContinuation.Next; 548continuation = continuation.Next;