4 writes to _localChangeNotifications
mscorlib (4)
system\threading\executioncontext.cs (4)
727
current.
_localChangeNotifications
= newChangeNotifications;
1101
ec.
_localChangeNotifications
= _localChangeNotifications;
1160
ec.
_localChangeNotifications
= this._localChangeNotifications;
1321
ecNew.
_localChangeNotifications
= localChangeNotifications;
8 references to _localChangeNotifications
mscorlib (8)
system\threading\executioncontext.cs (8)
711
Contract.Assert(current.
_localChangeNotifications
!= null);
712
Contract.Assert(Array.IndexOf(current.
_localChangeNotifications
, local) >= 0);
716
IAsyncLocal[] newChangeNotifications = current.
_localChangeNotifications
;
738
IAsyncLocal[] previousLocalChangeNotifications = (previous == null) ? null : previous.
_localChangeNotifications
;
756
IAsyncLocal[] currentLocalChangeNotifications = (current == null) ? null : current.
_localChangeNotifications
;
1101
ec._localChangeNotifications =
_localChangeNotifications
;
1160
ec._localChangeNotifications = this.
_localChangeNotifications
;
1279
localChangeNotifications = ecCurrent.DangerousGetRawExecutionContext().
_localChangeNotifications
;