2 writes to _hasShutdownFinished
WindowsBase (2)
Base\System\Windows\Threading\Dispatcher.cs (2)
1961
_hasShutdownFinished
= true;
2074
_hasShutdownFinished
= true; // Dispatcher thread - lock to write
9 references to _hasShutdownFinished
WindowsBase (9)
Base\System\Windows\Threading\Dispatcher.cs (9)
298
return
_hasShutdownFinished
; // Free-Thread access OK.
353
if(dispatcher.
_hasShutdownFinished
) // Dispatcher thread - no lock needed for read
1054
!
_hasShutdownFinished
&&
2024
if(!
_hasShutdownFinished
) // Dispatcher thread - no lock needed for read
2498
if(!_hasShutdownStarted && !
_hasShutdownFinished
) // Dispatcher thread - no lock needed for read
2815
if(!
_hasShutdownFinished
) // Could be a non-dispatcher thread, lock to read
2881
if(!
_hasShutdownFinished
) // Could be a non-dispatcher thread, lock to read
2894
if(!
_hasShutdownFinished
) // Could be a non-dispatcher thread, lock to read
2922
if(!
_hasShutdownFinished
) // Dispatcher thread, does not technically need the lock to read