internalstaticclassAsyncMethodBuilderCore// debugger depends on this exact name{publicstaticvoidStart<TStateMachine>(refTStateMachinestateMachine)whereTStateMachine:IAsyncStateMachine{if(stateMachine==null)// TStateMachines are generally non-nullable value types, so this check will be elided{ThrowHelper.ThrowArgumentNullException(ExceptionArgument.stateMachine);}ThreadcurrentThread=Thread.CurrentThread;// Store current ExecutionContext and SynchronizationContext as "previousXxx".// This allows us to restore them and undo any Context changes made in stateMachine.MoveNext// so that they won't "leak" out of the first await.ExecutionContext?previousExecutionCtx=currentThread._executionContext;SynchronizationContext?previousSyncCtx=currentThread._synchronizationContext;try{stateMachine.MoveNext();}finally{// The common case is that these have not changed, so avoid the cost of a write barrier if not needed.if(previousSyncCtx!=currentThread._synchronizationContext){// Restore changed SynchronizationContext back to previouscurrentThread._synchronizationContext=previousSyncCtx;}ExecutionContext?currentExecutionCtx=currentThread._executionContext;if(previousExecutionCtx!=currentExecutionCtx){ExecutionContext.RestoreChangedContextToThread(currentThread,previousExecutionCtx,currentExecutionCtx);}}}}
/// <summary>Inlines or schedules the continuation.</summary>/// <param name="task">The antecedent task, which is ignored.</param>/// <param name="canInlineContinuationTask">true if inlining is permitted; otherwise, false.</param>internalsealedoverridevoidRun(Tasktask,boolcanInlineContinuationTask){// If we're allowed to inline, run the action on this thread.if(canInlineContinuationTask&&m_syncContext==SynchronizationContext.Current){RunCallback(GetInvokeActionCallback(),m_action,refTask.t_currentTask);}// Otherwise, Post the action back to the SynchronizationContext.else{TplEventSourcelog=TplEventSource.Log;if(log.IsEnabled()){m_continuationId=Task.NewId();log.AwaitTaskContinuationScheduled((task.ExecutingTaskScheduler??TaskScheduler.Default).Id,task.Id,m_continuationId);}RunCallback(GetPostActionCallback(),this,refTask.t_currentTask);}// Any exceptions will be handled by RunCallback.}