6 writes to NextContinuation
System.Private.CoreLib (6)
src\runtime\src\coreclr\System.Private.CoreLib\src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (6)
959asyncDispatcherInfo.NextContinuation = MoveContinuationState(); 969asyncDispatcherInfo.NextContinuation = nextContinuation; 1016asyncDispatcherInfo.NextContinuation = handlerContinuation; 1078asyncDispatcherInfo.NextContinuation = MoveContinuationState(); 1090asyncDispatcherInfo.NextContinuation = nextContinuation; 1148asyncDispatcherInfo.NextContinuation = handlerContinuation;
13 references to NextContinuation
System.Private.CoreLib (13)
src\runtime\src\coreclr\System.Private.CoreLib\src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (12)
964Debug.Assert(asyncDispatcherInfo.NextContinuation != null); 967Continuation curContinuation = asyncDispatcherInfo.NextContinuation; 995Continuation? handlerContinuation = UnwindToPossibleHandler(asyncDispatcherInfo.NextContinuation, ex, ref unwindedFrames); 1019if (asyncDispatcherInfo.NextContinuation == null) 1035if (QueueContinuationFollowUpActionIfNecessary(asyncDispatcherInfo.NextContinuation)) 1047SetContinuationState(asyncDispatcherInfo.NextContinuation); 1085Debug.Assert(asyncDispatcherInfo.NextContinuation != null); 1086Continuation curContinuation = asyncDispatcherInfo.NextContinuation; 1123Continuation? handlerContinuation = UnwindToPossibleHandler(asyncDispatcherInfo.NextContinuation, ex, ref unwindedFrames); 1151if (asyncDispatcherInfo.NextContinuation == null) 1169if (QueueContinuationFollowUpActionIfNecessary(asyncDispatcherInfo.NextContinuation)) 1171RuntimeAsyncInstrumentationHelpers.QueueSuspendedRuntimeAsyncContext(ref asyncDispatcherInfo, flags, asyncDispatcherInfo.NextContinuation);
src\runtime\src\coreclr\System.Private.CoreLib\src\System\Runtime\CompilerServices\AsyncProfiler.CoreCLR.cs (1)
105AsyncCallstack.EmitResumeEvent(context, currentTimestamp, dispatcherId, wrapperIndex, info.NextContinuation);