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)
7201switch (_state) 7239Contract.Assert(_state == STATE_WAITING_ON_OUTER_TASK, "We're in the wrong state!");