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