5 writes to Next
System.Private.CoreLib (5)
src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (5)
237prevContinuation.Next = newContinuation; 247prevContinuation.Next = newContinuation; 256prevContinuation.Next = newContinuation; 359sentinelContinuation.Next = null; 461newContinuation.Next = nextContinuation;
6 references to Next
System.Private.CoreLib (6)
src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (6)
358Continuation headContinuation = sentinelContinuation.Next!; 404Continuation nextUserContinuation = headContinuation.Next!; 405while ((nextUserContinuation.Flags & continueFlags) == 0 && nextUserContinuation.Next != null) 407nextUserContinuation = nextUserContinuation.Next; 453Continuation? nextContinuation = curContinuation.Next; 528continuation = continuation.Next;