5 writes to _state
mscorlib (5)
system\threading\Tasks\Task.cs (5)
7154
_state
= STATE_WAITING_ON_OUTER_TASK;
7209
_state
= STATE_DONE; // bump the state
7242
_state
= STATE_WAITING_ON_INNER_TASK;
7325
_state
= STATE_DONE; // ... and record that we are done
7332
_state
= STATE_DONE; // ... and record that we are done
2 references to _state
mscorlib (2)
system\threading\Tasks\Task.cs (2)
7201
switch (
_state
)
7239
Contract.Assert(
_state
== STATE_WAITING_ON_OUTER_TASK, "We're in the wrong state!");