2 writes to m_stateMachine
mscorlib (2)
system\runtime\compilerservices\AsyncMethodBuilder.cs (2)
1000
runner.
m_stateMachine
= m_stateMachine; // only after this line is the Action delegate usable
1052
m_stateMachine
= stateMachine;
5 references to m_stateMachine
mscorlib (5)
system\runtime\compilerservices\AsyncMethodBuilder.cs (5)
995
Contract.Assert(runner.
m_stateMachine
== null, "The runner's state machine should not yet have been populated.");
1059
Contract.Assert(
m_stateMachine
!= null, "The state machine must have been set before calling Run.");
1070
ExecutionContext.Run(m_context, callback,
m_stateMachine
, preserveSyncCtx: true);
1076
m_stateMachine
.MoveNext();
1137
return new Action(runner.
m_stateMachine
.MoveNext);