6 writes to NextContinuation
System.Private.CoreLib (6)
src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (6)
564asyncDispatcherInfo.NextContinuation = MoveContinuationState(); 574asyncDispatcherInfo.NextContinuation = nextContinuation; 615asyncDispatcherInfo.NextContinuation = handlerContinuation; 668asyncDispatcherInfo.NextContinuation = MoveContinuationState(); 680asyncDispatcherInfo.NextContinuation = nextContinuation; 730asyncDispatcherInfo.NextContinuation = handlerContinuation;
15 references to NextContinuation
System.Private.CoreLib (15)
src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (14)
569Debug.Assert(asyncDispatcherInfo.NextContinuation != null); 572Continuation curContinuation = asyncDispatcherInfo.NextContinuation; 595Continuation? handlerContinuation = UnwindToPossibleHandler(asyncDispatcherInfo.NextContinuation, ex, ref unwindedFrames); 618if (asyncDispatcherInfo.NextContinuation == null) 633if (QueueContinuationFollowUpActionIfNecessary(asyncDispatcherInfo.NextContinuation)) 642SetContinuationState(asyncDispatcherInfo.NextContinuation); 675Debug.Assert(asyncDispatcherInfo.NextContinuation != null); 676Continuation curContinuation = asyncDispatcherInfo.NextContinuation; 706Continuation? handlerContinuation = UnwindToPossibleHandler(asyncDispatcherInfo.NextContinuation, ex, ref unwindedFrames); 733if (asyncDispatcherInfo.NextContinuation == null) 750if (QueueContinuationFollowUpActionIfNecessary(asyncDispatcherInfo.NextContinuation)) 752RuntimeAsyncInstrumentationHelpers.QueueSuspendedRuntimeAsyncContext(ref asyncDispatcherInfo, flags, curContinuation, asyncDispatcherInfo.NextContinuation); 1370if (info.NextContinuation != null) 1372Task.TryAddRuntimeAsyncContinuationChainTimestamps(info.NextContinuation, curContinuation);
src\System\Runtime\CompilerServices\AsyncProfiler.CoreCLR.cs (1)
78AsyncCallstack.EmitEvent(context, currentTimestamp, id, info.NextContinuation);