6 writes to Next
System.Private.CoreLib (6)
src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (6)
254prevContinuation.Next = newContinuation; 265prevContinuation.Next = newContinuation; 275prevContinuation.Next = newContinuation; 377sentinelContinuation.Next = null; 522newContinuation.Next = nextContinuation; 622newContinuation.Next = nextContinuation;
12 references to Next
System.Private.CoreLib (12)
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\Task.cs (4)
262nc = nc.Next; 277nc = nc.Next; 306nc = nc.Next; 363nc = nc.Next;
src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (8)
376Continuation headContinuation = sentinelContinuation.Next!; 422Continuation nextUserContinuation = headContinuation.Next!; 423while ((nextUserContinuation.Flags & continueFlags) == 0 && nextUserContinuation.Next != null) 425nextUserContinuation = nextUserContinuation.Next; 463Continuation? nextContinuation = t_runtimeAsyncAwaitState.SentinelContinuation!.Next; 513Continuation? nextContinuation = curContinuation.Next; 612Continuation? nextContinuation = curContinuation.Next; 713continuation = continuation.Next;