5 writes to Next
System.Private.CoreLib (5)
src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (5)
239
prevContinuation.
Next
= newContinuation;
249
prevContinuation.
Next
= newContinuation;
258
prevContinuation.
Next
= newContinuation;
361
sentinelContinuation.
Next
= null;
463
newContinuation.
Next
= nextContinuation;
6 references to Next
System.Private.CoreLib (6)
src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (6)
360
Continuation headContinuation = sentinelContinuation.
Next
!;
406
Continuation nextUserContinuation = headContinuation.
Next
!;
407
while ((nextUserContinuation.Flags & continueFlags) == 0 && nextUserContinuation.
Next
!= null)
409
nextUserContinuation = nextUserContinuation.
Next
;
455
Continuation? nextContinuation = curContinuation.
Next
;
530
continuation = continuation.
Next
;